diff --git a/.gitignore b/.gitignore index 9824385..40615e7 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,7 @@ node_modules /dist /test +page/ # local env files .env.local diff --git a/components.d.ts b/components.d.ts index 25fe594..fdfcad7 100644 --- a/components.d.ts +++ b/components.d.ts @@ -28,8 +28,11 @@ declare module 'vue' { ElStep: typeof import('element-plus/es')['ElStep'] ElSteps: typeof import('element-plus/es')['ElSteps'] ElSwitch: typeof import('element-plus/es')['ElSwitch'] + ElTable: typeof import('element-plus/es')['ElTable'] + ElTableColumn: typeof import('element-plus/es')['ElTableColumn'] ElTabPane: typeof import('element-plus/es')['ElTabPane'] ElTabs: typeof import('element-plus/es')['ElTabs'] + ElText: typeof import('element-plus/es')['ElText'] RouterLink: typeof import('vue-router')['RouterLink'] RouterView: typeof import('vue-router')['RouterView'] } diff --git a/src/App.vue b/src/App.vue index 14164ab..2327efe 100644 --- a/src/App.vue +++ b/src/App.vue @@ -30,120 +30,6 @@ const go = (path: string) => { } - -