fix: type error

This commit is contained in:
chansee97 2024-04-26 16:36:15 +08:00
parent c7483141ce
commit a9626d3ace
2 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@ declare namespace AppRoute {
/* 页面组件地址 */
componentPath?: string | null
/* 路由id */
id: numnber
id: number
/* 父级路由id顶级页面为null */
pid: number | null
}

View File

@ -23,7 +23,7 @@ const emit = defineEmits<{
const defaultFormModal: AppRoute.RowRoute = {
'name': '',
'path': '',
'id': undefined,
'id': -1,
'pid': null,
'meta.title': '',
'meta.icon': '',