chore: 新增 prettier 忽略文件

This commit is contained in:
pany 2022-04-21 17:35:30 +08:00
parent 97578ae5da
commit 9b4af24d41
3 changed files with 8 additions and 1 deletions

View File

@ -5,3 +5,4 @@ node_modules
dist
dist-ssr
*.local
*.d.ts

View File

@ -1,4 +1,6 @@
// Generated by 'unplugin-auto-import'
// We suggest you to commit this file into source control
declare global {}
declare global {
}
export {}

View File

@ -5,7 +5,11 @@ import '@vue/runtime-core'
declare module '@vue/runtime-core' {
export interface GlobalComponents {
ElButton: typeof import('element-plus/es')['ElButton']
HelloWorld: typeof import('./../components/HelloWorld.vue')['default']
RouterLink: typeof import('vue-router')['RouterLink']
RouterView: typeof import('vue-router')['RouterView']
SvgIcon: typeof import('./../components/SvgIcon/index.vue')['default']
}
}