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

19 lines
364 B
Vue
Raw Normal View History

2023-09-24 23:41:26 +08:00
<template>
2023-09-26 09:21:27 +08:00
<el-row>
<el-col :span="4"> <TableList></TableList></el-col>
<el-col :span="20"> <FieldList class="fileList"></FieldList></el-col>
</el-row>
2023-09-24 23:41:26 +08:00
</template>
<script setup>
import FieldList from './components/FieldList.vue'
2023-09-26 09:21:27 +08:00
import TableList from './components/TableList.vue'
</script>
<style scoped>
.fileList{
}
.tableList{
}
</style>