以下由js教學專欄跟大家介紹如何用Vue TypeScript專案配置實戰,希望對需要的朋友有幫助!
用Vue TypeScript專案設定實戰
專案建置
透過鷹架建置
# 1. 透過Vue CLI 3 建立vue專案
vue create vue-typescript // 在此选择typescript支持 ? Check the features needed for your project: () Babel () TypeScript ( ) Progressive Web App (PWA) Support () Router () Vuex >() CSS Pre-processors () Linter / Formatter ( ) Unit Testing ( ) E2E Testing 我是08年出道的高级前端架构师,有问题或者交流经验可以进我的扣扣裙 519293536 我都会尽力帮大家哦
// 引入 vue-class-component 插件 // 以下大概是我的选择 ? Use class-style component syntax? (Y/n) y ? Use Babel alongside TypeScript (required for modern mode, auto-detected polyfills, transpiling JSX)? Yes ? Use history mode for router? (Requires proper server setup for index fallback in production) Yes ? Pick a CSS pre-processor (PostCSS, Autoprefixer and CSS Modules are supported by default): Sass/SCSS (with node-sass) ? Pick a linter / formatter config: Prettier ? Pick additional lint features: Lint on save ? Where do you prefer placing config for Babel, ESLint, etc.? In dedicated config files ? Save this as a preset for future projects? (y/N) n
相關推薦:《js進階教學》
2. 啟動專案
yarn run serve
能跑起來嗎,能跑就是好項目
3.項目配置
此時其實腳手架已經幫我們配置好了大多數的配置,但還是需要熟悉一下配置。
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" ] } }
tslint.json
在根路徑下建立tslint.json檔案,就是 引入 ts 的 standard 規格。
如果已經引進了eslint的設定文件,這一步其實也可以不做。
{ "extends": "tslint-config-standard", "globals": { "require": true } }
複製程式碼
附上一個腳手架自動產生的eslint的預設設定 eslintrc.js。
module.exports = { root: true, env: { node: true }, extends: [ "plugin:vue/essential", "eslint:recommended", "@vue/typescript/recommended", "@vue/prettier", "@vue/prettier/@typescript-eslint" ], parserOptions: { ecmaVersion: 2020 }, rules: { "no-console": process.env.NODE_ENV === "production" ? "warn" : "off", "no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off" } };
4.支援ES6 / ES7
在 tsconfig.json中,加入對es6 / es7的支持,更多的設定請見tsconfig - 編譯選項。
"lib": [ "dom", "es5", "es6", "es7", "es2015.promise" ]
5.設定Vuex
首先當然是先安裝相依性啦。
yarn add vuex vuex-class
複製程式碼
vuex:在vue 中集中管理應用程式狀態
vuex-class :在vue-class- component 寫法中綁定vuex。
引用了vuex-class之後還是跟原來的寫法有點差別的。
vuex store 該怎麼寫,怎麼寫,引用的時候如下:
import { Component, Prop, Vue } from "vue-property-decorator"; import { State, Getter, Action, Mutation, namespace } from "vuex-class"; // 声明使用的是哪个模块 const commonModule = namespace("common"); @Component export default class HelloWorld extends Vue { @Prop() private msg!: string; // 获取vuex中的数据 @commonModule.State("token") token!: string; @commonModule.Getter("getToken") getToken!: string; @commonModule.Action("setToken") actionSetToken: (arg0: string) => void; @commonModule.Mutation("setToken") mutationSetToken: unknown; // @State token // @Getter("token") getterToken; // @Action("token") actionToken; // @Mutation("token") mutationToken; created() { this.actionSetToken("123"); alert(this.token); } }
6.支援vue mixin 函數
在src下新建mixins目錄,根據業務復用模組劃分結構。
在使用Vue進行開發時我們經常要用到混合,結合TypeScript之後一般有兩種mixins的方法。
一種是vue-property-decorator提供的
// 定义 routerMixins.ts文件 // mixin router 公共方法 import Vue from 'vue' import Component from 'vue-class-component' @Component export default class myMixins extends Vue { /** * @author: WangXinYu * @describe: 浏览器后退事件 * @param: {} * @return: **/ goBack() { this.$router.go(-1) } /** * @author: WangXinYu * @describe: test * @param: {} * @return: **/ routerTest() { console.log('are you ok?') } }
// 引入 mixin import { Component, Prop, Vue, Mixins } from 'vue-property-decorator' import routerMixins from '@/mixins/router' @Component export default class HelloWorld extends Mixins(routerMixins) { created() { this.routerTest() } }
第二種是在@Component中混入。
// mixins.ts import { Vue, Component } from 'vue-property-decorator'; declare module 'vue/types/vue' { interface Vue { value: string; } } @Component export default class myMixins extends Vue { value: string = 'Hello' }
// 混入 import { Vue, Component, Prop } from 'vue-property-decorator'; import myMixins from '@/mixins/myMixins'; @Component({ mixins: [myMixins] }) export default class myComponent extends Vue{ created(){ console.log(this.value) // => Hello } }
都會了嗎?如果不懂 ,記住我 。我是08年出道的高級前端架構師,有問題或交流經驗可以進我的扣扣裙519293536 我都會盡力幫大家哦
本文的文字及圖片來自網絡加上自己的想法,僅供學習、交流使用,不具有任何商業用途,版權歸原作者所有,如有問題請及時聯繫我們以作處理
(未完待續...)
以上是用Vue+TypeScript專案配置實戰的詳細內容。更多資訊請關注PHP中文網其他相關文章!