vuejs+typescrpt this[key] 使用变量获取this属性报错解决办法Element implicitly has an 'any' type because
element
A Vue.js 2.0 UI Toolkit for Web
项目地址:https://gitcode.com/gh_mirrors/eleme/element
免费下载资源
·
1.在使用vue+typescript 构建项目的时候,使用变量动态获取属性值的时候,ts解析器会报一个错误。
**
var key = 'name';
this[key] = 123;
// 这里会提示一个语法错误 **Element implicitly has an 'any' type because type 'About' has no index signature.**
console.log(this[key])
// 这里会提示一个语法错误 **Element implicitly has an 'any' type because type 'About' has no index signature.**
2.解决办法
在组件顶部声明一个declare
declare module 'vue/types/vue' {
interface Vue {
[key: string]: any,
}
}
GitHub 加速计划 / eleme / element
54.06 K
14.63 K
下载
A Vue.js 2.0 UI Toolkit for Web
最近提交(Master分支:2 个月前 )
c345bb45
6 个月前
a07f3a59
* Update transition.md
* Update table.md
* Update transition.md
* Update table.md
* Update transition.md
* Update table.md
* Update table.md
* Update transition.md
* Update popover.md 7 个月前
更多推荐
已为社区贡献2条内容
所有评论(0)