1234567891011121314151617181920212223242526272829 |
- <template>
- <div class="base">
- <router-view v-slot="{ Component }">
- <transition>
- <component :is="Component" />
- </transition>
- </router-view>
- </div>
- </template>
- <script>
- export default {
- data() {
- return {};
- },
- created() {
- },
- methods: {
-
- },
- };
- </script>
- <style scoped>
- .base {
- background-color: #F7F8FA;
- width: 100%;
- }
- </style>
|