Vue3 重构:REVIEW 公众号标签

This commit is contained in:
YunaiV
2023-03-25 11:20:35 +08:00
parent c0d5a5663c
commit 2abc7eca67
5 changed files with 74 additions and 114 deletions

View File

@ -1,23 +0,0 @@
import type { VxeCrudSchema } from '@/hooks/web/useVxeCrudSchemas'
// CrudSchema
const crudSchemas = reactive<VxeCrudSchema>({
primaryKey: 'id',
primaryType: null,
action: false,
columns: [
{
title: '编号',
field: 'id',
table: {
treeNode: true,
align: 'left'
}
},
{
title: '名字',
field: 'name'
}
]
})
export const { allSchemas } = useVxeCrudSchemas(crudSchemas)