fix: 示例组件name

This commit is contained in:
张传龙 2022-12-09 14:17:21 +08:00
parent 7e79c51630
commit 98e3f13185
2 changed files with 4 additions and 4 deletions

View File

@ -14,8 +14,8 @@ export default {
},
children: [
{
name: 'CrudTable',
path: 'crud-table',
name: 'Crud',
path: 'crud',
component: () => import('./table/index.vue'),
meta: {
title: 'CRUD表格',

View File

@ -86,7 +86,7 @@ import { formatDateTime, renderIcon, isNullOrUndef } from '@/utils'
import { useCRUD } from '@/composables'
import api from './api'
defineOptions({ name: 'CrudTable' })
defineOptions({ name: 'Crud' })
const $table = ref(null)
/** QueryBar筛选参数可选 */
@ -94,7 +94,7 @@ const queryItems = ref({})
/** 补充参数(可选) */
const extraParams = ref({})
onMounted(() => {
onActivated(() => {
$table.value?.handleSearch()
})