App.vue 434 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <div id="app">
  3. <van-skeleton title :row="50" :loading="pageLoading" >
  4. <navigation>
  5. <router-view/>
  6. </navigation>
  7. </van-skeleton>
  8. </div>
  9. </template>
  10. <script>
  11. export default {
  12. data() {
  13. return {
  14. }
  15. },
  16. computed:{
  17. pageLoading() {
  18. return this.$store.state.app.loading
  19. }
  20. }
  21. }
  22. </script>
  23. <style lang="scss">
  24. .van-skeleton {
  25. background-color: #fff;
  26. }
  27. </style>