氣勢洶涌,ts彷佛已經在來的路上,隨時可能敲門。
2015年,三大前端框架開始火爆的時候,我還在抱着Backbone不放,一直以爲能夠輕易轉到其餘框架去。後來換工做,現實把臉都打腫了,沒作過vue、react、angular?不要!
今天,不能犯這個錯了,畢竟時不我與,都快奔三了。
以前寫的一個demo,這一個多月太忙,沒有繼續下去,能夠參看一下 vue-cli3-typescripthtml
vue-cli3的詳細功能推薦官方文檔,不在本文介紹範圍內。
安裝:前端
npm install -g @vue/cli
檢查安裝成功與否:vue
vue --version
建立項目:react
vue create myapp
能夠選擇Manually select feature
來自由選擇功能,經常使用的有vuex、vue-router、CSS Pre-processors等,咱們再把typescript勾上,就能夠回車進入下一步了。PS:勾選的操做是按空格鍵。
建立成功以後,執行啓動命令:git
npm run serve
就能夠經過http://localhost:8080/
訪問本地項目啦。github
若是沒有typescript基礎,能夠先補補課,大概花三十分鐘就能夠了解typescript的一些特性,好比:TypeScript 入門教程。
ts最主要的一點就是類型定義,有個概念纔好看得懂demo。vue-router
這是一個涵蓋了vue的一些對象的集合,咱們能夠從這裏取一些東西出來:vuex
import { Component, Prop, Vue, Watch } from 'vue-property-decorator';
取出來的這幾個屬性,分別是 組件定義Component
,父組件傳遞過來的參數Prop
,原始vue對象Vue
,數據監聽對象Watch
。還包括這裏沒有列舉出來的Model
,Emit
,Inject
,Provide
,能夠本身嘗試下。vue-cli
<template> <div class="hello"> <h1>{{ msg }}--{{ names }}</h1> <input type="text" v-model="txt"> <p>{{ getTxt }}</p> <button @click="add">add</button> <p>{{ sum }}</p> </div> </template> <script lang="ts"> import { Component, Prop, Vue, Watch } from 'vue-property-decorator'; @Component export default class HelloWorld extends Vue { //props @Prop() private msg!: string @Prop() private names!: string //data private txt: string = '1' private sum: number = 0 //computed get getTxt(){ return this.txt } //methods private add(){ this.sum++ console.log(`sum : ${this.sum}`) } //生命週期 created(){ console.log('created') } //watch @Watch('txt') changeTxt(newTxt: string, oldTxt: string){ console.log(`change txt: ${oldTxt} to ${newTxt}`) } } </script> <!-- Add "scoped" attribute to limit CSS to this component only --> <style scoped lang="less"> h3 { margin: 40px 0 0; } input { width: 240px; height: 32px; line-height: 32px; } </style>
以上就是demo,代碼組織有點散,沒有原來js書寫的整齊。
這個demo沒有引入組件,若是須要引入組件,應該這樣書寫:typescript
<template> <div class="home"> <img alt="Vue logo" src="../assets/logo.png"> <HelloWorld msg="Welcome to Your Vue.js + TypeScript App" names="aaa" /> <HelloWorld2 msg="Welcome to Your Vue.js + TypeScript App" names="bbb" /> </div> </template> <script lang="ts"> import { Component, Vue } from 'vue-property-decorator'; import HelloWorld from '@/components/HelloWorld.vue'; // @ is an alias to /src import HelloWorld2 from '@/components/HelloWorld2.vue'; // @ is an alias to /src @Component({ components: { HelloWorld, HelloWorld2, }, }) export default class Home extends Vue {} </script>
若是VSCode編輯器有警告提示,好比:Experimental support for decorators is a feature that is subject to change in a future release. Set the 'experimentalDecorators' option to remove this warning.
能夠把工做區其餘的項目移除,或者把本項目拖動到工做區的首位,或者在把本項目的tsconfig.json複製到工做區首位的項目的根目錄下,重啓編輯器,有比較大的機率能夠解決警告提示。
推薦閱讀官方的vue+typescript文檔。