chore: vxe可编辑表格demo

This commit is contained in:
dap
2025-01-06 21:13:48 +08:00
parent ac913595a9
commit 23588b02d9
2 changed files with 251 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<script setup lang="ts">
import { Page } from '@vben/common-ui';
import { Card } from 'ant-design-vue';
import EditTable from './edit-table.vue';
</script>
<template>
<Page>
<div class="flex flex-col gap-4">
<Card title="可编辑表格" size="small">
<EditTable class="h-[500px]" />
</Card>
</div>
</Page>
</template>