How to apply TypeScript classes in Vue projects

How to apply TypeScript classes in Vue projects

1. Introduction

TypeScript is based on the vue-class-component library, which is an official library launched by vue that supports the use of class to develop vue single-file components.

The main functions are as follows:

  • methods can be directly declared as member methods of a class
  • Computed properties can be declared as property accessors of a class
  • Initialized data can be declared as class attributes
  • data , render , and all Vue lifecycle hooks can be used directly as class member methods
  • All other properties need to be placed in the decorator

2. Use

vue-property-decorator mainly provides the following decorators

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

1. @Component

Component decorator It marks this class as a Vue component, so it cannot be omitted even if no options are set

If you need to define name , components , filters , directives , and custom properties, you can define them in Component decorator as follows:

import {Component,Vue} from 'vue-property-decorator'; 
import {componentA,componentB} from '@/components'; 
 
 @Component({ 
    components:{ 
        componentA, 
        componentB, 
    }, 
    directives: { 
        focus: 
            // Definition of instruction inserted: function (el) { 
                el.focus() 
            } 
        } 
    } 
}) 
export default class YourCompoent extends Vue{ 
    
} 


2. Computed, data, methods

data and methods attributes of the component are cancelled here. In the past, the attributes in the data return object and the methods in methods need to be defined directly in the Class as the attributes and methods of the class.

@Component 
export default class HelloDecorator extends Vue { 
    count: number = 123 // The class attribute is equivalent to the previous data 
 
    add(): number { // The class method is the same as the previous method this.count + 1 
    } 
 
    // Get the calculated attribute get total(): number { 
      return this.count + 1 
    } 
 
    // Set the calculated properties set total(param:number): void { 
      this.count = param 
    } 
} 

3. @props

The component receives the decorator of the attribute, which is used as follows:

import {Component,Vue,Prop} from vue-property-decorator; 
 
@Component 
export default class YourComponent extends Vue { 
    @Prop(String) 
    propA: string; 
     
    @Prop([String,Number]) 
    propB:string|number; 
     
    @Prop({ 
     type: String, // type: [String , Number] 
     default: 'default value', // usually a String or Number 
      //If it is an object or array. Default value is returned from a factory function // default: () => { 
      // return ['a','b'] 
      // } 
     required: true, 
     validator: (value) => { 
        return [ 
          'InProcess', 
          'Settled' 
        ].indexOf(value) !== -1 
     } 
    }) 
    propC: string; 
} 


4. @watch

It is actually the listener in Vue, as follows:

import { Vue, Component, Watch } from 'vue-property-decorator' 
 
@Component 
export default class YourComponent extends Vue { 
  @Watch('child') 
  onChildChanged(val: string, oldVal: string) {} 
 
  @Watch('person', { immediate: true, deep: true }) 
  onPersonChanged1(val: Person, oldVal: Person) {} 
 
  @Watch('person') 
  onPersonChanged2(val: Person, oldVal: Person) {} 
} 


5. @emit

The @Emit decorator provided by vue-property-decorator replaces $emit trigger of events in Vue, as follows:

import {Vue, Component, Emit} from 'vue-property-decorator'; 
    @Component({}) 
    export default class Some extends Vue{ 
        mounted(){ 
            this.$on('emit-todo', function(n) { 
                console.log(n) 
            }) 
            this.emitTodo('world'); 
        } 
        @Emit() 
        emitTodo(n: string){ 
            console.log('hello'); 
        } 
    } 

Conclusion

You can see that the syntax of the above typescript version of vue class is quite different from that of the usual javascript version. Class and decorators are used in many places, but in fact, the essence is the same. Only by constantly writing can you become proficient in it.

This is the end of this article on how to apply TypeScript in Vue projects. For more information on applying TypeScript in Vue projects, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • TypeScript Enumeration Type
  • Introduction to TypeScript basic types
  • Explain TypeScript enumeration types in detail
  • Detailed explanation of type protection in TypeScript
  • A brief discussion on TypeScript's type protection mechanism
  • Classes in TypeScript

<<:  Use of Linux passwd command

>>:  Detailed analysis of MySQL master-slave replication

Recommend

40 web page designs with super large fonts

Today's web designs tend to display very larg...

Detailed explanation of how to exit Docker container without closing it

After entering the Docker container, if you exit ...

Implementing the preview function of multiple image uploads based on HTML

I recently wrote a script for uploading multiple ...

CentOS 8 officially released based on Red Hat Enterprise Linux 8

The CentOS Project, a 100% compatible rebuild of ...

Detailed explanation of the principle of creating tomcat in Eclipse

When creating a tomcat server on a local eclipse,...

Markup Languages ​​- Lists Again

Click here to return to the 123WORDPRESS.COM HTML ...

vue_drf implements SMS verification code

Table of contents 1. Demand 1. Demand 2. SDK para...

Linux installation MongoDB startup and common problem solving

MongoDB installation process and problem records ...

Shorten the page rendering time to make the page run faster

How to shorten the page rendering time on the bro...

Implementation of k8s deployment of docker container

Environment: (docker, k8s cluster), continue with...

Detailed explanation of Cgroup, the core principle of Docker

The powerful tool cgroup in the kernel can not on...

Vue globally introduces scss (mixin)

Table of contents 1. mixin.scss 2. Single file us...