我正在Vue组件上使用Vuex mapState
(使用Vue.extend
,而不是类样式):
computed: {
...mapState('geoframes/create', [
'apiRequestId',
'countPending',
'deviceCount',
'requestId',
]),
例如,Vue组件中引用this.deviceCount
的方法抛出TS错误,因为它没有意识到这些错误是通过Vuex绑定到组件的。
我该如何解决?