|
|
@ -1,11 +1,9 @@
|
|
|
|
// src/components.d.ts 添加组件的类型声明
|
|
|
|
// src/components.d.ts 添加组件的类型声明
|
|
|
|
import XtxSwiper from '@/components/XtxSwiper.vue'
|
|
|
|
import XtxSwiper from '@/components/XtxSwiper.vue'
|
|
|
|
import XtxGuess from '@/components/XtxGuess.vue'
|
|
|
|
|
|
|
|
declare module 'vue' {
|
|
|
|
declare module 'vue' {
|
|
|
|
export interface GlobalComponents {
|
|
|
|
export interface GlobalComponents {
|
|
|
|
//组件名XtxSwiper: 付给的类型typeof XtxSwiper 这样鼠标移入组件名位置就显示出提示不是包unkon
|
|
|
|
//组件名XtxSwiper: 付给的类型typeof XtxSwiper 这样鼠标移入组件名位置就显示出提示不是包unkon
|
|
|
|
XtxSwiper: typeof XtxSwiper
|
|
|
|
XtxSwiper: typeof XtxSwiper
|
|
|
|
XtxGuess: typeof XtxGuess
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// 组件实例类型 -- 其他的ref获取需要用 --定义公共实例类型InstanceType
|
|
|
|
// 组件实例类型 -- 其他的ref获取需要用 --定义公共实例类型InstanceType
|
|
|
|