fix: 修复前端添加模块命令显示错误问题

This commit is contained in:
橙子
2024-06-09 02:04:23 +08:00
parent a903b5e36c
commit 26dbc8d00d

View File

@@ -43,7 +43,7 @@ const typeData = [{ name: '模块', key: 'module', value: 'module' },
{ name: '模块', key: 'project', value: 'project' }] { name: '模块', key: 'project', value: 'project' }]
const addModuleComputed=computed(()=>{ const addModuleComputed=computed(()=>{
return `> yi-abp add-module ${form.name.toLowerCase().replace(/\./g, "-")}`; return `> yi-abp add-module ${form.name}`;
}) })
const commandComputed=computed(()=>{ const commandComputed=computed(()=>{