typescript用vue-property-decorator在vue中的遇到的坑
1.typescript需要设置参数的类型,如果没有设置会报这样的错误 Property 'map' does not exist on type '"tableColumn"'
我们可以这样在参数上array.map(()=>{}) 改成 (val as any).map(()=>{})这样就可以不验证参数的类型
2. 我们在引用混入的时候mixin,要在写混入的ts,记得要加上@Component({}),如果不加会引不到ts中的内容
3.当我们定义一个对象的时候,例如:let obj:object = { name:'',age:'' }; 如果我们想添加一个属性,之前的做法是:obj.sex="man"
这样会报两个错误:
1. Property 'sex' does not exist on type 'object' 不能直接赋值,我们可以把obj的类型改成any,不判断就可以了
2.Identifier 'params' is never reassigned; use 'const' instead of 'let' 建议把你的const改成let
4.使用vuex: 首先下载vuex-class yarn add vuex-class --dev
如果使用modules,我们可以用namespace来区分我们的模块 注意:如果没有使用@Component会引入不到
5.使用混入Mixins: 在minxis下创建一个test.ts 注意:如果没有使用@Component会引入不到
在.vue中引入minxis方法,如果使用多个混入,我们可以通过Mixins(test1,test2)来引入