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,
    }
}

declare module vue/types/vue

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 个月前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐