feat: 图库功能

This commit is contained in:
duan
2025-02-27 10:20:13 +08:00
parent 5f41da34fb
commit 9a16e09fa1
13 changed files with 541 additions and 202 deletions

View File

@@ -0,0 +1,23 @@
<template>
<div class="Table">
<!-- 按钮 -->
<AddButton></AddButton>
<!-- 表格 -->
<Table></Table>
<!-- 分页 -->
<Paging></Paging>
</div>
</template>
<script setup>
import AddButton from './component/AddButton.vue'
import Table from './component/Table.vue'
import Paging from './component/Paging.vue'
</script>
<style scoped lang="scss">
.Table {
padding: 20px;
background-color: #fff;
border: 1px solid #e4e7ed;
border-radius: 4px;
}
</style>