18 lines
354 B
Vue
18 lines
354 B
Vue
<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>
|