1234567891011121314151617181920212223242526272829303132 |
- <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">
- .el-select-dropdown__item {
- &:last-child {
- margin-bottom: 15px;
- }
- }
- .btn_bar {
- margin: 0.75rem 0;
- }
- </style>
|