Files
Yi.Admin/Yi.RuoYi.Vue3/src/views/webfirst/table/index.vue

10 lines
222 B
Vue
Raw Normal View History

2023-09-24 23:41:26 +08:00
<template>
2023-09-26 00:38:10 +08:00
<div>
2023-09-24 23:41:26 +08:00
<TableList></TableList>
<FieldList></FieldList>
2023-09-26 00:38:10 +08:00
</div>
2023-09-24 23:41:26 +08:00
</template>
<script setup>
import FieldList from './components/FieldList.vue'
import TableList from './components/tableList.vue'
</script>