diff --git a/.eslintignore b/.eslintignore index 0db090d3..d59bfdb1 100644 --- a/.eslintignore +++ b/.eslintignore @@ -7,3 +7,6 @@ service **/*.scss **/*.css index.html +auto-imports.d.ts +.eslintrc.cjs +components.d.ts diff --git a/.prettierignore b/.prettierignore index f7d29413..800352c9 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1,4 +1,5 @@ dist node_modules docs -service \ No newline at end of file +service +auto-imports.d.ts \ No newline at end of file diff --git a/src/router/modules/editor.ts b/src/router/modules/editor.ts index ee0d542d..8df009f3 100644 --- a/src/router/modules/editor.ts +++ b/src/router/modules/editor.ts @@ -7,7 +7,7 @@ export default { children: [ { path: '/editor', - name: 'editor', + name: 'editorIndex', component: () => import('@/views/editor/editor.vue') } ] diff --git a/src/router/modules/home.ts b/src/router/modules/home.ts index 68d3fb15..8f064844 100644 --- a/src/router/modules/home.ts +++ b/src/router/modules/home.ts @@ -7,7 +7,7 @@ export default { children: [ { path: '/home', - name: 'home', + name: 'homeIndex', component: () => import('@/views/home/home.vue') } ] diff --git a/src/router/modules/template.ts b/src/router/modules/template.ts index 82ab1d45..b811eea5 100644 --- a/src/router/modules/template.ts +++ b/src/router/modules/template.ts @@ -7,7 +7,7 @@ export default { children: [ { path: '/template', - name: 'template', + name: 'templateIndex', component: () => import('@/views/template/template.vue') } ]