vue-cli+webpack-simple +typescript 入門

  • 安裝vue-cli
  • 安裝ts依賴
  • 配置webpack
  • 添加tsconfig,json
  • 添加tslint.json
  • 讓ts識別.vue
  • 改造.vue文件

什麼是typescriptjavascript

typescript時javascript的強類型版本。而後在編譯期去掉類型和特有語法,生成純粹的javascript代碼,因爲最終在瀏覽器中運行的仍然是 JavaScript,因此 TypeScript 並不依賴於瀏覽器的支持,也並不會帶來兼容性問題。html

TypeScript  JavaScript 的超集,這意味着他支持全部的 JavaScript 語法。並在此之上對 JavaScript 添加了一些擴展,如 class / interface / module 等。這樣會大大提高代碼的可閱讀性。vue

強類型語言的優點在於靜態類型檢查,具體能夠參見 http://www.zhihu.com/question... 的回答。歸納來講主要包括如下幾點java

1.靜態類型檢查(靜態類型檢查能夠避免不少沒必要要的錯誤, 不用在調試的時候才發現問題)node

2.IDE智能提示react

3.代碼重構jquery

4.可讀性webpack

Vue 引入 TypeScript

首先Cli以後,接下來須要安裝一些必要/之後須要的插件git

安裝vue的官方插件
npm i vue-class-component vue-property-decorator --save

// ts-loader typescript 必須安裝,其餘的相信你之後也會裝上的
npm i ts-loader typescript tslint tslint-loader tslint-config-standard --save-dev

這些庫大致的做用,能夠按需引入:github

  • vue-class-component:強化 Vue 組件,使用 TypeScript/裝飾器 加強 Vue 組件
  • vue-property-decorator:在 vue-class-component 上加強更多的結合 Vue 特性的裝飾器
  • ts-loader:TypeScript 爲 Webpack 提供了 ts-loader,其實就是爲了讓webpack識別 .ts .tsx文件
  • tslint-loadertslint:我想你也會在.ts .tsx文件 約束代碼格式(做用等同於eslint)
  • tslint-config-standardtslint 配置 standard風格的約束

配置 webpack

首先找到.webpack.config.js或./build/webpack.base.conf.js

  • 找到entry.app 將main.js 改爲 main.ts, 順便把項目文件中的main.js也改爲main.ts, 裏面內容保持不變

 

entry: {
  app: './src/main.ts'
}

  

  • 找到resolve.extensions 裏面加上.ts 後綴 (是爲了以後引入.ts的時候不寫後綴)

     

  resolve: {
    extensions: ['.js', '.vue', '.json', '.ts'],
    alias: {
      '@': resolve('src')
    }
  }
  • 找到module.rules 添加webpack對.ts的解析
    {
          test: /\.ts$/,
          exclude: /node_modules/,
          enforce: 'pre',
          loader: 'tslint-loader'
        },
        {
          test: /\.tsx?$/,
          loader: 'ts-loader',
          exclude: /node_modules/,
          options: {
            appendTsSuffixTo: [/\.vue$/],
          }
        },
    添加這段代碼

    ts-loader 會檢索當前目錄下的 tsconfig.json 文件,根據裏面定義的規則來解析.ts文件(就跟.babelrc的做用同樣)

    tslint-loader 做用等同於 eslint-loader添加 tsconfig.json

        添加 tsconfig.json

接下來在根路徑下建立tsconfig.json文件

這裏有一份參考的 tsconfig.json 配置,完成的配置請點擊 tsconfig.json

{
  // 編譯選項
  "compilerOptions": {
    // 輸出目錄
    "outDir": "./output",
    // 是否包含能夠用於 debug 的 sourceMap
    "sourceMap": true,
    // 以嚴格模式解析
    "strict": true,
    // 採用的模塊系統
    "module": "esnext",
    // 如何處理模塊
    "moduleResolution": "node",
    // 編譯輸出目標 ES 版本
    "target": "es5",
    // 容許從沒有設置默認導出的模塊中默認導入
    "allowSyntheticDefaultImports": true,
    // 將每一個文件做爲單獨的模塊
    "isolatedModules": false,
    // 啓用裝飾器
    "experimentalDecorators": true,
    // 啓用設計類型元數據(用於反射)
    "emitDecoratorMetadata": true,
    // 在表達式和聲明上有隱含的any類型時報錯
    "noImplicitAny": false,
    // 不是函數的全部返回路徑都有返回值時報錯。
    "noImplicitReturns": true,
    // 從 tslib 導入外部幫助庫: 好比__extends,__rest等
    "importHelpers": true,
    // 編譯過程當中打印文件名
    "listFiles": true,
    // 移除註釋
    "removeComments": true,
    "suppressImplicitAnyIndexErrors": true,
    // 容許編譯javascript文件
    "allowJs": true,
    // 解析非相對模塊名的基準目錄
    "baseUrl": "./",
    // 指定特殊模塊的路徑
    "paths": {
      "jquery": [
        "node_modules/jquery/dist/jquery"
      ]
    },
    // 編譯過程當中須要引入的庫文件的列表
    "lib": [
      "dom",
      "es2015",
      "es2015.promise"
    ]
  }
}

本身的配置

{
  "include": [
    "src/**/*"
  ],
  "exclude": [
    "node_modules"
  ],
  "compilerOptions": {
    "allowSyntheticDefaultImports": true,
    "experimentalDecorators": true,
    "allowJs": true,
    "module": "esnext",
    "target": "es5",
    "moduleResolution": "node",
    "isolatedModules": true,
    "lib": [
      "dom",
      "es5",
      "es2015.promise"
    ],
    "sourceMap": true,
    "pretty": true
  }
}

添加 tslint.json

在根路徑下建立tslint.json文件

這裏就很簡單了,就是 引入 ts 的 standard 規範

{
  "extends": "tslint-config-standard",
  "globals": {
    "require": true
  }
}

讓 ts 識別 .vue

因爲 TypeScript 默認並不支持 *.vue 後綴的文件,因此在 vue 項目中引入的時候須要建立一個 vue-shim.d.ts 文件,放在項目項目對應使用目錄下,例如 src/vue-shim.d.ts

declare module "*.vue" {
  import Vue from "vue";
  export default Vue;
}

重點

 TypeScript *.vue 後綴的文件能夠交給 vue 模塊來處理。

而在代碼中導入 *.vue 文件的時候,須要寫上 .vue 後綴。緣由仍是由於 TypeScript 默認只識別 *.ts 文件,不識別 *.vue 文件:

import Component from 'components/component.vue'

改造 .vue 文件

在這以前先讓咱們瞭解一下所須要的插件(下面的內容須要掌握es7裝飾器, 就是下面使用的@符號)

vue-class-component

vue-class-component 對 Vue 組件進行了一層封裝,讓 Vue 組件語法在結合了 TypeScript 語法以後更加扁平化:

<template>
  <div>
    <input v-model="msg">
    <p>msg: {{ msg }}</p>
    <p>computed msg: {{ computedMsg }}</p>
    <button @click="greet">Greet</button>
  </div>
</template>

<script lang="ts">
  import Vue from 'vue'
  import Component from 'vue-class-component'

  @Component
  export default class App extends Vue {
    // 初始化數據
    msg = 123

    // 聲明週期鉤子
    mounted () {
      this.greet()
    }

    // 計算屬性
    get computedMsg () {
      return 'computed ' + this.msg
    }

    // 方法
    greet () {
      alert('greeting: ' + this.msg)
    }
  }
</script>

上面的代碼等同於

export default {
  data () {
    return {
      msg: 123
    }
  }

  // 聲明週期鉤子
  mounted () {
    this.greet()
  }

  // 計算屬性
  computed: {
    computedMsg () {
      return 'computed ' + this.msg
    }
  }

  // 方法
  methods: {
    greet () {
      alert('greeting: ' + this.msg)
    }
  }
}

開始修改App.vue文件

  1. script 標籤上加上 lang="ts", 意思是讓webpack將這段代碼識別爲typescript 而非javascript
  2. 修改vue組件的構造方式( 跟react組件寫法有點相似, 詳見官方 ), 以下圖
  3. vue-property-decorator語法改造以前代碼
<template>
  <div id="app">
    <img src="./assets/logo.png">
    <router-view/>
  </div>
</template>

<script lang="ts">
import Vue from 'vue'
import Component from 'vue-class-component'

@Component({})
export default class App extends Vue {
}
</script>

<style>
#app {
  font-family: 'Avenir', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;
  margin-top: 60px;
}

</style>

最後npm run dev

若是按照文章沒有配置出來,能夠參考此repo vue-typescript-starter (安全按照文章一步一步操做的版本)

參考連接/推薦閱讀

相關文章
相關標籤/搜索