index.vue 429 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <div class="flex flex-col full-height">
  3. <serach />
  4. <el-card shadow="hover" class="full-width mt-10">
  5. <list />
  6. </el-card>
  7. </div>
  8. </template>
  9. <route>
  10. {
  11. path: '/database',
  12. name: '资料库',
  13. }
  14. </route>
  15. <script>
  16. import serach from './component/serach.vue'
  17. import list from './component/list.vue'
  18. export default {
  19. name: 'index',
  20. components: { serach, list }
  21. }
  22. </script>
  23. <style scoped></style>