App.vue 401 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <div id="app">
  3. <keep-alive>
  4. <router-view v-if="$route.meta.keepAlive"></router-view>
  5. </keep-alive>
  6. <router-view v-if="!$route.meta.keepAlive"></router-view>
  7. </div>
  8. </template>
  9. <script>
  10. export default {
  11. data () {
  12. return {
  13. list: []
  14. }
  15. },
  16. mounted: function () {
  17. },
  18. created: function () {
  19. },
  20. methods: {
  21. }
  22. }
  23. </script>
  24. <style scoped>
  25. </style>