fw-admin.vue 512 B

1234567891011121314151617181920212223242526272829303132
  1. <template>
  2. <div id="fw-admin">
  3. <section class="app-main">
  4. <transition name="el-fade-in-linear" mode="out-in">
  5. <router-view></router-view>
  6. </transition>
  7. </section>
  8. </div>
  9. </template>
  10. <script>
  11. export default {
  12. name: 'fw-admin',
  13. props: {},
  14. components: {},
  15. data: () => ({}),
  16. created() {},
  17. computed: {},
  18. methods: {},
  19. };
  20. </script>
  21. <style lang="less">
  22. .el-select-dropdown__item {
  23. &:last-child {
  24. margin-bottom: 15px;
  25. }
  26. }
  27. .btn_bar {
  28. margin: 0.75rem 0;
  29. }
  30. </style>