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