| 123456789101112131415161718192021222324252627 |
- <template>
- <div class="flex flex-col full-height">
- <serach />
- <el-card shadow="hover" class="full-width mt-10">
- <list />
- </el-card>
- </div>
- </template>
- <route>
- {
- path: '/database',
- name: '资料库',
- }
- </route>
- <script>
- import serach from './component/serach.vue'
- import list from './component/list.vue'
- export default {
- name: 'index',
- components: { serach, list }
- }
- </script>
- <style scoped></style>
|