面试官:说说如何在Vue项目中应用TypeScript?

一、前言

与如何在React项目中应用TypeScript类似

在VUE项目中应用typescript,我们需要引入一个库vue-property-decorator,

其是基于vue-class-component库而来,这个库vue官方推出的一个支持使用class方式来开发vue单文件组件的库

主要的功能如下:

  • methods 可以直接声明为类的成员方法
  • 计算属性可以被声明为类的属性访问器
  • 初始化的 data 可以被声明为类属性
  • data、render 以及所有的 Vue 生命周期钩子可以直接作为类的成员方法
  • 所有其他属性,需要放在装饰器中

二、使用

vue-property-decorator 主要提供了以下装饰器

  • @Prop
  • @PropSync
  • @Model
  • @Watch
  • @Provide
  • @Inject
  • @ProvideReactive
  • @InjectReactive
  • @Emit
  • @Ref
  • @Component (由 vue-class-component 提供)
  • Mixins (由 vue-class-component 提供)

@Component

Component装饰器它注明了此类为一个Vue组件,因此即使没有设置选项也不能省略

如果需要定义比如 name、components、filters、directives以及自定义属性,就可以在Component装饰器中定义,如下:

 
 
 
 
  1. import {Component,Vue} from 'vue-property-decorator';
  2. import {componentA,componentB} from '@/components';
  3.  @Component({
  4.     components:{
  5.         componentA,
  6.         componentB,
  7.     },
  8.     directives: {
  9.         focus: {
  10.             // 指令的定义
  11.             inserted: function (el) {
  12.                 el.focus()
  13.             }
  14.         }
  15.     }
  16. })
  17. export default class YourCompoent extends Vue{
  18.    
  19. }

computed、data、methods

这里取消了组件的data和methods属性,以往data返回对象中的属性、methods中的方法需要直接定义在Class中,当做类的属性和方法

 
 
 
 
  1. @Component
  2. export default class HelloDecorator extends Vue {
  3.     count: number = 123 // 类属性相当于以前的 data
  4.     add(): number { // 类方法就是以前的方法
  5.         this.count + 1
  6.     }
  7.     // 获取计算属性
  8.     get total(): number {
  9.       return this.count + 1
  10.     }
  11.     // 设置计算属性
  12.     set total(param:number): void {
  13.       this.count = param
  14.     }
  15. }

@props

组件接收属性的装饰器,如下使用:

 
 
 
 
  1. import {Component,Vue,Prop} from vue-property-decorator;
  2. @Component
  3. export default class YourComponent extends Vue {
  4.     @Prop(String)
  5.     propA:string;
  6.     
  7.     @Prop([String,Number])
  8.     propB:string|number;
  9.     
  10.     @Prop({
  11.      type: String, // type: [String , Number]
  12.      default: 'default value', // 一般为String或Number
  13.       //如果是对象或数组的话。默认值从一个工厂函数中返回
  14.       // defatult: () => {
  15.       //     return ['a','b']
  16.       // }
  17.      required: true,
  18.      validator: (value) => {
  19.         return [
  20.           'InProcess',
  21.           'Settled'
  22.         ].indexOf(value) !== -1
  23.      }
  24.     })
  25.     propC:string;
  26. }

@watch

实际就是Vue中的监听器,如下:

 
 
 
 
  1. import { Vue, Component, Watch } from 'vue-property-decorator'
  2. @Component
  3. export default class YourComponent extends Vue {
  4.   @Watch('child')
  5.   onChildChanged(val: string, oldVal: string) {}
  6.   @Watch('person', { immediate: true, deep: true })
  7.   onPersonChanged1(val: Person, oldVal: Person) {}
  8.   @Watch('person')
  9.   onPersonChanged2(val: Person, oldVal: Person) {}
  10. }

@emit

vue-property-decorator 提供的 @Emit 装饰器就是代替Vue中的事件的触发$emit,如下:

 
 
 
 
  1. import {Vue, Component, Emit} from 'vue-property-decorator';
  2.     @Component({})
  3.     export default class Some extends Vue{
  4.         mounted(){
  5.             this.$on('emit-todo', function(n) {
  6.                 console.log(n)
  7.             })
  8.             this.emitTodo('world');
  9.         }
  10.         @Emit()
  11.         emitTodo(n: string){
  12.             console.log('hello');
  13.         }
  14.     }

三 、总结

可以看到上述typescript版本的vue class的语法与平时javascript版本使用起来还是有很大的不同,多处用到class与装饰器,但实际上本质是一致的,只有不断编写才会得心应手

分享标题:面试官:说说如何在Vue项目中应用TypeScript?
本文来源:http://www.shufengxianlan.com/qtweb/news36/432086.html

网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联