From 467ea2c7426b36e35499f125e4eaa5332ac37de1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E5=BF=A0=E5=BC=BA?= Date: Mon, 6 Nov 2023 07:28:57 +0000 Subject: [PATCH] update docs/further/front/crudComponent.md. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 王忠强 --- docs/further/front/crudComponent.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/further/front/crudComponent.md b/docs/further/front/crudComponent.md index c7f58ed..ed1b903 100644 --- a/docs/further/front/crudComponent.md +++ b/docs/further/front/crudComponent.md @@ -71,7 +71,7 @@ const options = reactive({ // 设置新增接口 add: { show: true, // 显示新增按钮 - api: foo.save // 新增接口 + api: foo.save, // 新增接口 auth: ['foo:save'] // 需要有新增的权限列表 }, // 设置编辑接口 -- Gitee