欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

vue项目中使用ts(typescript)入门教程

程序员文章站 2022-03-21 14:34:02
目录1、引入typescript2、配置文件webpack配置3、让项目识别.ts4、vue组件的编写data()中定义数据props传值完整代码案例最近项目需要将原vue项目结合ts的使用进行改造,...

最近项目需要将原vue项目结合ts的使用进行改造,这个后面应该是中大型项目的发展趋势,看到一篇不错的入门教程,结合它并进行了一点拓展记录之。本文从安装到vue组件编写进行了说明,适合入门。

1、引入typescript

npm install vue-class-component vue-property-decorator --save
npm install ts-loader typescript tslint tslint-loader tslint-config-standard --save-dev

vue-class-component:扩展vue支持typescript,将原有的vue语法通过声明的方式来支持ts

vue-property-decorator:基于vue-class-component扩展更多装饰器

ts-loader:让webpack能够识别ts文件

tslint-loader:tslint用来约束文件编码

tslint-config-standard: tslint 配置 standard风格的约束

2、配置文件webpack配置

根据项目的不同配置的地方不同,如果是vue cli 3.0创建的项目需要在vue.config.js中配置,如果是3.0以下版本的话,需要webpack.base.conf中配置。(以下说明是在webpack.base.conf文件中更改)

在resolve.extensions中增加.ts,目的是在代码中引入ts文件不用写.ts后缀

  resolve: {
    extensions: ['.js', '.vue', '.json', '.ts'],
    alias: {}
  }

在module.rules中增加ts的rules

module: {
    rules: [
      {
        test: /\.ts$/,
        exclude: /node_modules/,
        enforce: 'pre',
        loader: 'tslint-loader'
      },
      {
        test: /\.tsx?$/,
        loader: 'ts-loader',
        exclude: /node_modules/,
        options: {
          appendtssuffixto: [/\.vue$/]
        }
      }
    ]
  }

tsconfig.json配置
ts-loader会检索文件中的tsconfig.json.以其中的规则来解析ts文件,详细的配置可以参考https://www.tslang.cn/docs/handbook/tsconfig-json.html
贴上测试项目tsconfig.json文件

{
  // 编译选项
  "compileroptions": {
    // 输出目录
    "outdir": "./output",
    // 是否包含可以用于 debug 的 sourcemap
    "sourcemap": true,
    // 以严格模式解析
    "strict": false,
    // 采用的模块系统
    "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文件,由于我们前面安装了tslint-config-standard,所以可以直接用tslint-config-standard中规则,文件如下:

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

3、让项目识别.ts

由于 typescript 默认并不支持 *.vue 后缀的文件,所以在 vue 项目中引入的时候需要创建一个 vue-shim.d.ts 文件,放在根目录下

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

4、vue组件的编写

vue组件里大多数的方法改成通过@xxx(装饰器)来表明当前定义的为什么数据,类似ng中的注入。而业务逻辑js的部分就可以直接采用ts的写法了。

基本写法

模板template和样式style的写法不变,script的模块进行了改变,基本写法如下:

<script lang="ts">
import { component, vue } from "vue-property-decorator";
@component
export default class test extends vue {
  
};
</script>
  • lang="ts"script张声明下当前的语言是ts
  • @component:注明此类为一个vue组件
  • export default class test extends vue: export当前组件类是继承vue的

data()中定义数据

data中的数据由原来的data()方法改成直接在对象中定义

export default class test extends vue {
 public message1: string = "heimayu";
 public message2: string = "真好看";
}

props传值

props的话就没有data那么舒服了,因为他需要使用装饰器了,写法如下

@prop()
propa:string

@prop()
propb:number

$emit传值

不带参数

 // 原来写法:this.$emit('bindsend')
  // 现在直接写 this.bindsend()
  // 多个定义
  @emit()
  bindsend():string{
      return this.message
  }

方法带参数

  // 原来写法:this.$emit('bindsend', msg)
  // 现在直接写: this.bindsend(msg)
  // 多个下面的定义
  @emit()
  bindsend(msg:string){
      // to do something
  }

emit带参数

  // 这里的test是改变组件引用的@事件名称这时候要写@test 而不是@bindsend2
  @emit('test)
  private bindsend2(){
      
  }

watch观察数据

  // 原来的写法 watch:{}

  @watch('propa',{
      deep:true
  })
  test(newvalue:string,oldvalue:string){
      console.log('propa值改变了' + newvalue);
  }

computed计算属性

public get computedmsg(){
      return '这里是计算属性' + this.message;
 }
public set computedmsg(message:string){
 }

完整代码案例

<template>
  <div class="test-container">
    {{message}}
    <input type="button" value="点击触发父级方法" @click="bindsend"/>
    <input type="button" value="点击触发父级方法" @click="handlesend"/>
    <input type="button" value="点击触发父级方法" @click="bindsend2"/>
    <!-- <hello></hello> -->
  </div>
</template>
<script lang="ts">
import { component, prop, vue, watch, emit } from "vue-property-decorator";
import hello from "./helloworld.vue";
// 注明此类为一个vue组件
@component({
  components: {
    hello
  }
})
export default class test extends vue {
  // 原有data中的数据在这里展开编写
 public message: string = "asd";
  //原有props中的数据展开编写
  @prop({
    type: number,
    default: 1,
    required: false
  })
  propa?: number
  @prop()
  propb:string
  //原有computed
  public get computedmsg(){
      return '这里是计算属性' + this.message;
  }
  public set computedmsg(message:string){
  }
  //原有的watch属性
  @watch('propa',{
      deep:true
  })
  public test(newvalue:string,oldvalue:string){
      console.log('propa值改变了' + newvalue);
  }
  // 以前需要给父级传值的时候直接方法中使用emit就行了,当前需要通过emit来处理
  @emit()
  private bindsend():string{
      return this.message
  }
  @emit()
  private bindsend1(msg:string,love:string){
      // 如果不处理可以不写下面的,会自动将参数回传
    //   msg += 'love';
    //   return msg;
  }
  //原有放在methods中的方法平铺出来
  public handlesend():void {
      this.bindsend1(this.message,'love');
  }
  // 这里的emit中的参数是表明父级通过什么接受,类似以前的$emit('父级定义的方法')
  @emit('test')
  private bindsend2(){
      return '这个可以用test接受';
  }
}
</script>

到此这篇关于vue项目中使用ts(typescript)入门教程 的文章就介绍到这了,更多相关vue typescript入门内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!