g-ui-core 0.0.5 → 0.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/vue/index.d.ts +2 -2
- package/vue/main.d.ts +8 -1
- package/vue/global.d.ts +0 -0
package/package.json
CHANGED
package/vue/index.d.ts
CHANGED
package/vue/main.d.ts
CHANGED
|
@@ -1,2 +1,9 @@
|
|
|
1
|
-
|
|
1
|
+
// 增强 Vue 全局组件类型(Volar 智能提示)
|
|
2
|
+
// 指向 Vue 组件类型,让 Volar 能推断 props
|
|
3
|
+
declare module '@vue/runtime-core' {
|
|
4
|
+
export interface GlobalComponents {
|
|
5
|
+
GButton: typeof import('./MyButton').default
|
|
6
|
+
}
|
|
7
|
+
}
|
|
8
|
+
|
|
2
9
|
export * from '../dist/types/index'
|
package/vue/global.d.ts
DELETED
|
File without changes
|