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