1234567891011121314151617181920212223 |
- <template>
- <div id="fw-admin">
- <section class="app-main">
- <transition name="el-fade-in-linear" mode="out-in">
- <router-view></router-view>
- </transition>
- </section>
- </div>
- </template>
- <script>
- export default {
- name: 'fw-admin',
- props: {},
- components: {},
- data: () => ({}),
- created() {},
- computed: {},
- methods: {},
- };
- </script>
- <style lang="less" scoped></style>
|