既然总要有人做废物,为什么不能是我。
1.脚手架搭建了一个ts的vue项目,
2.然后再home文件里面学一些ts的语法,试试怎么样
/*
// 类成员修饰符
public 公有的,可以自由访问类的成员
protected 保护,类及其继承的字了可以访问
private 私有,只有类可以访问
*/
declare module "vue/types/vue" {
interface Vue {
[key: string]: any;
}
}
使用watch,computed需要先引入
import { Component, Vue, Watch } from "vue-property-decorator";
@Watch("Verificationcode")
//Verificationcode检测的元素
getvisible(newval: string, oldval: string) {
this.Verificationcode = newval.substring(0, 4);
}