12345678910111213141516171819202122232425262728 |
- <template>
- <section class="main">
- <transition name="fade-transform" mode="out-in">
- <router-view/>
- </transition>
- </section>
- </template>
- <script>
- export default {
- name: 'Main',
- computed: {
-
-
-
- }
- }
- </script>
- <style scoped>
- .main {
-
- min-height: calc(100% - 70px);
- width: 100%;
- position: relative;
- overflow: hidden;
- }
- </style>
|