12345678910111213141516171819202122232425262728 |
- <template>
- <div id="app">
- <keep-alive>
- <router-view v-if="$route.meta.keepAlive"></router-view>
- </keep-alive>
- <router-view v-if="!$route.meta.keepAlive"></router-view>
- </div>
- </template>
- <script>
- export default {
- data () {
- return {
- list: []
- }
- },
- mounted: function () {
- },
- created: function () {
- },
- methods: {
- }
- }
- </script>
- <style scoped>
- </style>
|