vue3中在".vue"文件中使用使用"$store"报警告问题
作者:互联网
问题
使用最新版的vuex后,然后vue3在template模版中使用出现红色警告,但是编译无异常
效果图
解决办法:
在shims-vue.d.ts
文件中新增下面的声明
// shims-vue.d.ts
import { Store } from '@/store'
declare module '@vue/runtime-core' {
interface ComponentCustomProperties {
$store: Store
}
}
资料链接
- stack overflow:https://stackoverflow.com/questions/64412243/vue-js-3-and-typescript-property-store-does-not-exist-on-type-componentpub/68917028
- vuex 官网:https://vuex.vuejs.org/guide/typescript-support.html#typing-store-property-in-vue-component
标签:vue,store,vue3,property,vuex,Store 来源: https://www.cnblogs.com/it774274680/p/16701665.html