We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c03a13 commit a3754ccCopy full SHA for a3754cc
.gitignore
@@ -28,4 +28,6 @@ node_modules
28
.git
29
30
# visualizer产物
31
-stats.html
+stats.html
32
+# 组件内容生成的类型声明,建议把他加入 gitignore 中,以免出现频繁更改导致 git 监测到项目内容一直变动的问题
33
+compnents.d.ts
components.d.ts
@@ -12,7 +12,9 @@ declare module '@vue/runtime-core' {
12
RouterView: typeof import('vue-router')['RouterView']
13
Tabbar: typeof import('./src/layout/tabbar/index.vue')['default']
14
VanButton: typeof import('vant/es')['Button']
15
+ VanIcon: typeof import('vant/es')['Icon']
16
VanTabbar: typeof import('vant/es')['Tabbar']
17
VanTabbarItem: typeof import('vant/es')['TabbarItem']
18
+ VanTag: typeof import('vant/es')['Tag']
19
}
20
0 commit comments