公司的团队近来热衷于vue框架,新项目想着练练typescript,因而最先了vue+ts的踩坑之路…
本文意在为和我有一样主意的同伴们省去踩坑的时候
1.开端设置
起首装置官方插件vue-class-component,vue-property-decorator,设置webpack。
webpack设置以下:
修正进口文件
entry: {
app: './src/main.ts'
}
resolve部份:
extensions: ['.js', '.vue', '.json', '.ts', '.tsx']
设置loader
{
test: /\.tsx?$/,
loader: 'ts-loader',
exclude: /node_modules/,
options: {
appendTsSuffixTo: [/\.vue$/],
}
}
设置tsconfig.json
{
"include": [
"src/**/*"
],
"exclude": [
"node_modules"
],
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"allowJs": true,
"module": "es2015",
"target": "es5",
"moduleResolution": "node",
"experimentalDecorators": true,
"isolatedModules": true,
"lib": [
"dom",
"es5",
"es2015.promise"
],
"sourceMap": true,
"pretty": true
}
}
2.实战!
配好设置只是第一步,在项目里跑起来才是霸道。
在vue文件的script标签里增加lang=’ts’
由于ts-loader不像配过loader的webpack一样晓得vue,html等文件是什么东西,你跑起来后会报模块没法剖析的毛病,所以还须要设置.d.ts声明文件
vue的以下设置
declare module "*.vue" {
import Vue from 'vue';
export default Vue;
}
你也可认为别的的非js模块设置.d.ts文件
如html(通知ts-loader把html明白成字符串)
declare module "*.html" {
let template: string;
export default template;
}
设置好以后ts就能够明白这些模块了
从vue-property-decorator引入须要用到的模块
(平常只用到Component, Vue, Watch, Prop这四个,别的3个没用到也没研讨,晓得的大佬能够诠释下。)
import { Component, Vue, Watch } from ‘vue-property-decorator’
这里拿之前写的sidbar的代码当个栗子:
class HoverTopElem {
leaveTop: number = -200
top: number = null
height: number = null
show(e) {
this.top = e.target.getBoundingClientRect().top
this.height = e.target.clientHeight
}
hidden() {
this.top = this.leaveTop
}
}
@Component({
name: 'sidebar',
template: template,
components: {
sidebarItem
}
})
export default class Sidebar extends Vue {
SidebarMenu: any = SidebarMenu
hoverTopElem: HoverTopElem = new HoverTopElem()
activeListItemName: string = null
activeRouteItemRoute: string = null
get _activeRouteItemRoute(): string {
return this.$route.path
}
@Watch('_activeRouteItemRoute', { immediate: true })
onRouteChanged(val: any) {
this.activeRouteItemRoute = val
}
changeList(param) {
this.activeListItemName = param
}
changeRoute(param) {
this.activeRouteItemRoute = param
}
}
元数据写在@Component设置里,像名字,用到的组件啥的,然后说下之前vue里用到的各个实例属性要领在这里怎样用:
data: 这个是最经常使用的,像上面的SidebarMenu(这里一共声清楚明了4个),注重这里声明的
变量一定要赋一个值,没有就null,不能是undefined,不然这个数据就不是相应的。因而HoverTopElem类里的属性也是要有初始值,不然这些属性也不是相应的
computed: 这里就是get函数,注重tsconfig.jsonp不设置”target”: “es5″这里会报错
prop: vue-property-decorator内里有Prop模块,也能够在元数据声明这个prop,然后在类里声明一下这个变量就能够够了,个人引荐第一种
watch: vue-property-decorator里的Watch模块
methods: 要领像data一样直接写在类里就能够够了(注重不要和周期钩子同名)
种种生命周期钩子: 直接写就行
路由钩子见vue-class-component文档
至此,基础就能够够像本来一样写vue组件了。
固然假如要想和本来一样写ts,还须要设置tslint,vue-cli自带的eslint不辨认一些ts语法,像public修饰符之类的,致使编译失利,由于ts还不是很熟练就没想着配,有兴致的朋侪能够尝尝。