前端

ts在vue2.0中实战

2021-03-10  本文已影响0人  烁烁0925

ts在vue2.0中实战

构建

通过官方脚手架构建安装

# 1. 如果没有安装 Vue CLI 就先安装
npm install --global @vue/cli

最新的Vue CLI工具可以直接使用 TypeScript 集成环境 创建新项目。
运行vue create vue-ts
然后,命令行会要求选择预设。使用箭头键选择 Manually select features。
确保选择了 TypeScript 和 Babel 选项


1.png

然后配置其余设置


2.png

设置完成 vue cli 就会开始安装依赖。

目录解析

安装完成打开项目,集成 ts 后的项目目录结构是这样子的:

|-- vue-ts
    |-- .browserslistrc     # browserslistrc 配置文件 (用于支持 Autoprefixer)
    |-- .eslintrc.js        # eslint 配置
    |-- .gitignore
    |-- babel.config.js     # babel-loader 配置
    |-- package-lock.json
    |-- package.json        # package.json 依赖
    |-- postcss.config.js   # postcss 配置
    |-- README.md
    |-- tsconfig.json       # typescript 配置
    |-- vue.config.js       # vue-cli 配置
    |-- public              # 静态资源 (会被直接复制)
    |   |-- favicon.ico     # favicon图标
    |   |-- index.html      # html模板
    |-- src
    |   |-- App.vue         # 入口页面
    |   |-- main.ts         # 入口文件 加载组件 初始化等
    |   |-- shims-tsx.d.ts  # 允许.tsx 结尾的文件,在 Vue 项目中编写 jsx 代码
    |   |-- shims-vue.d.ts  # 主要用于 TypeScript 识别.vue 文件,Ts 默认并不支持导入 vue 文件
    |   |-- assets          # 主题 字体等静态资源 (由 webpack 处理加载)
    |   |-- components      # 全局组件
    |   |-- router          # 路由
    |   |-- store           # 全局 vuex store
    |   |-- styles          # 全局样式
    |   |-- views           # 所有页面
    |-- tests               # 测试

与之前用js构建的项目目录没有什么太大的不同,区别主要是之前 js 后缀的现在改为了ts后缀,还多了tsconfig.json、shims-tsx.d.ts、shims-vue.d.ts这几个文件

使用

在 vue 中使用 typescript 非常好用的几个库

组件声明

import { Component, Prop, Vue, Watch } from 'vue-property-decorator';

@Component
export default class Test extends Vue {

}

data 对象

import { Component, Prop, Vue, Watch } from 'vue-property-decorator';

@Component
export default class Test extends Vue {
   private name = "";
}

Prop 声明

import { Component, Prop, Vue, Watch } from 'vue-property-decorator';

@Component
export default class Test extends Vue {
  @Prop({ default: false }) private isCollapse!: boolean;
  @Prop({ default: true }) private isFirstLevel!: boolean;
  @Prop({ default: "" }) private basePath!: string;
  private name = "";
}

method

js 下是需要在 method 对象中声明方法,现变成

import { Component, Prop, Vue, Watch } from 'vue-property-decorator';

@Component
export default class Test extends Vue {
  @Prop({ default: false }) private isCollapse!: boolean;
  @Prop({ default: true }) private isFirstLevel!: boolean;
  @Prop({ default: "" }) private basePath!: string;
  private name = "";

  public clickFunc(): void {
    console.log(this.isCollapse);
    console.log(this.basePath);
  }
}

Watch 监听属性

 @Watch("name", { immediate: true })
  private onNameChange(name: string) {
    console.log(name);
  }
@Watch('arr', { immediate: true, deep: true })
 private  onArrChanged(newValue: number[], oldValue: number[]) {}

computed 计算属性

public get allname() {
  return 'computed ' + this.name;
}

allname 是计算后的值,name 是被监听的值

生命周期函数

  public created(): void {
    console.log("created");
  }

  public mounted(): void {
    console.log("mounted");
  }

emit 事件

 @Emit()
  getName() {
    return this.name;
  }

  @Emit()
  promise() {
    return new Promise(resolve => {
      setTimeout(() => {
        resolve(20);
      }, 0);
    });
  }

使用 js 写法

  getName() {
      this.$emit('get-name',  this.name)
   }
  promise() {
      const promise = new Promise(resolve => {
          setTimeout(() => {
          resolve(20)
          }, 0)
      })
      promise.then(value => {
          this.$emit('promise', value)
      })
   }

vuex

传统的 store 用法

export default  {
    namespaced:true,
    state:{
        foo:""
    },
    getters:{
        getFoo(state){ return state.foo}
    },
    mutations:{
        CHANGE_FOO(state,payload){
            state.foo = payload
        }
    },
    actions:{
        changeFoo({commit},payload){
            commot("getFoo",payload)
        }
    }
}

vuex-module-decorators的使用方法

// store/test.ts

import {
    VuexModule,
    Mutation,
    Action,
    getModule,
    Module
  } from "vuex-module-decorators";
import store from "@/store";

export interface TestState {
    foo: string
}

@Module({ dynamic: true, store, name: "test" })
class Test extends VuexModule implements TestState {

    public foo = '';
    get getFoo(){
        return this.foo
    }

    @Mutation
    private CHANGE_FOO(foo: string) {
        this.foo = foo
    }

    @Action
    public changeFoo(foo: string) {
        console.log('action:' +foo)
        this.CHANGE_FOO(foo);
    }
}

export const TestModule = getModule(Test);

class Test extends VuexModule implements TestState {}

@Module({ dynamic: true, store, name: "test" })
class Test extends VuexModule implements TestState {}

module 本身有几种可以配置的属性:

@Mutation
   private CHANGE_FOO(foo: string) {
       this.foo = foo
   }
@Action
    public changeFoo(foo: string) {
        console.log('action:' +foo)
        this.CHANGE_FOO(foo);
    }
export const UserModule = getModule(User);

在vue文件中调用

<template>
  <div>
    <p>store用法</p>
    {{ $store.state.test.foo }}
    <div><input @change="changeVal" type="text" v-model="fooVal" /></div>
  </div>
</template>

<script lang="ts">
import { Component, Vue } from "vue-property-decorator";
import { TestModule } from "@/store/test";
@Component
export default class TestStore extends Vue {
  private fooVal = "";

  private changeVal() {
    console.log(TestModule.foo);
    TestModule.changeFoo(this.fooVal);
  }
}
</script>

上一篇下一篇

猜你喜欢

热点阅读