123456789101112131415161718192021222324252627282930 |
- <template>
- <div class="layout">
- <slot></slot>
- </div>
- </template>
- <script>
- export default {
- name: 'layout',
- data() {
- return {};
- },
- mounted() {},
- methods: {}
- };
- </script>
- <style lang="less" scoped>
- .layout {
- height: 100%;
- }
- .go-back {
- position: fixed;
- width: 42px;
- height: 42px;
- left: 26px;
- bottom: 98px;
- }
- </style>
|