-
- 安装
- 引入
- @Component
-
- registerHooks
- data
- computed
- @Prop
- @PropSync
- @Watch
- @Ref
- @Emit
- @Model
- @Provide/@Inject/@ProvideReactive/@InjectReactive
- Mixins (在vue-class-component中定义)
怎么使vue支持ts写法呢,我们需要用到
vue-property-decorator
,这个库完全依赖于 vue-class-component
. 安装
npm i -D vue-proporty-decorator
引入 当我们在
vue
单文件中使用TypeScript
时,引入vue-property-decorator
之后,script中的标签就变为这样:="ts">
@Component 注: 该属性完全继承于
vue-class-component
属性参数:@Component(options: ComponentOptions = {})
参数说明:@Component 装饰器可以接收一个对象作为参数,可以在对象中声明 components ,filters,directives, beforeRouteLeave等未提供装饰器的选项,也可以声明computed,watch等
registerHooks
除了将beforeRouteLeave放在Component中之外,还可以全局注册,就是
registerHooks
="ts">
import { Component, Vue } from 'vue-property-decorator'
Component.registerHooks([
'beforeRouteLeave',
'beforeRouteEnter',
]);
@Component
export default class App extends Vue {
beforeRouteEnter(to: any, from: any, next: any) {
console.log('beforeRouteEnter')
next()
}beforeRouteLeave(to: any, from: any, next: any) {
console.log('beforeRouteLeave')
next()
}
}
data 对于
data
里的变量类型,我们可以直接按ts
定义类变量的写法写就可以="ts">
import {Vue, Component} from 'vue-property-decorator';
@Component
export default class "组件名" extends Vue{
ValA: string = 'hello world';
ValB: number = 1;
}
等同于
>
export default {
data(){
return {
ValA: 'hello world',
ValB: 1
}
}
}
computed 对于
Vue
中的计算属性,我们只需要将该计算属性名定义为一个函数,并在函数前加上get
关键字即可.原本Vue
中的computed
里的每个计算属性都变成了在前缀添加get的函数.="ts">
import {Vue, Component} from 'vue-property-decorator';
@Component
export default class "组件名" extends Vue{
get ValA(){
return 1;
}
}
等同于
>
export default {
computed: {
ValA: function() {
return 1;
}
}
}
@Prop 属性参数:@Prop(options: (PropOptions | Constructor[] | Constructor) = {})
参数说明:@Prop装饰器接收一个参数,这个参数可以有三种写法:
PropOptions,可以使用以下选项:
type
,default
,required
,validator
;
Constructor[],指定 prop 的可选类型;
Constructor,例如String,Number,Boolean等,指定 prop 的类型;
注意:属性的ts类型后面需要加上
undefined
类型;或者在属性名后面加上!
,表示非null
和 非undefined
的断言,告诉TypeScript我这里一定有值,否则编译器会给出错误提示;比如子组件从父组件接收三个属性
propA
,propB
,propC
propA
类型为Number
propB
默认值为default value
propC
类型为String
或者Boolean
export default {
props: {
propA: {
type: Number
},
propB: {
default: 'default value'
},
propC: {
type: [String, Boolean]
},
}
}
我们使用
vue-property-decorator
提供的@Prop
可以将上面的代码改造为如下:="ts">
import {Vue, Component, Prop} from 'vue-property-decorator';
@Component
export default class "组件名" extends Vue{
@Prop(Number) propA!: number;
@Prop({default: 'default value'}) propB!: string;
@prop([String, Boolean]) propC: string | boolean;
}
总结:
@Prop
接受一个参数可以是类型变量或者对象或者数组.@Prop
接受的类型比如Number
是JavaScript
的类型,之后定义的属性类型则是TypeScript
的类型.@PropSync 属性参数:@PropSync(propName: string, options: (PropOptions | Constructor[] | Constructor) = {})
@PropSync装饰器与@prop用法类似,二者的区别在于:
- @PropSync 装饰器接收两个参数:
propName: string 表示父组件传递过来的属性名;
options: Constructor | Constructor[] | PropOptions 与@Prop的第一个参数一致; - @PropSync 会生成一个新的计算属性。
示例:
// 父组件
父组件
like:{{like}}
='ts'>
import { Vue, Component } from 'vue-property-decorator';
import PropSyncComponent from '@/components/PropSyncComponent.vue';
@Component({components: { PropSyncComponent },})
export default class PropSyncPage extends Vue {
private like = '父组件的like';
}
// 子组件
子组件:
syncedlike:{{ syncedlike }}
="ts">
import { Component, Prop, Vue, PropSync,} from 'vue-property-decorator';
@Component
export default class PropSyncComponent extends Vue {
@PropSync('like', { type: String }) syncedlike!: string;
// 用来实现组件的双向绑定,子组件可以更改父组件穿过来的值
editLike(): void {
this.syncedlike = '子组件修改过后的syncedlike!';
// 双向绑定,更改syncedlike会更改父组件的like
}
}
@Watch 属性参数:@Watch(path: string, options: WatchOptions = {})
参数说明:@Watch 装饰器接收两个参数:
- path: string 被侦听的属性名;
- options?: WatchOptions={} options可以包含两个属性 :
immediate?:boolean 侦听开始之后是否立即调用该回调函数;
deep?:boolean 被侦听的对象的属性被改变时,是否调用该回调函数;
vue-property-decorator
提供的@Watch
装饰器来替换Vue
中的watch
属性,以此来监听值的变化.在
Vue
中监听器的使用如下:export default{
watch: {
'child': this.onChangeValue, // 这种写法默认 `immediate`和`deep`为`false`
'person': {
handler: 'onChangeValue',
immediate: true,
deep: true
}
},
methods: {
onChangeValue(newVal, oldVal){
// todo...
}
}
}
那么我们如何使用
@Watch
装饰器来改造它呢?import {Vue, Component, Watch} from 'vue-property-decorator';
@Watch('child')
onChangeValue(newVal: string, oldVal: string){
// todo...
}@Watch('person', {immediate: true, deep: true})
onChangeValue(newVal: Person, oldVal: Person){
// todo...
}
总结:
@Watch
使用非常简单,接受第一个参数为要监听的属性名 第二个属性为可选对象.@Watch
所装饰的函数即监听到属性变化之后的操作.@Ref 属性参数:@Ref(refKey?: string)
参数说明:@Ref 装饰器接收一个可选参数,用来指向元素或子组件的引用信息。如果没有提供这个参数,会使用装饰器后面的属性名充当参数
="ts">
import { Vue, Component, Ref } from 'vue-property-decorator';
import RefComponent from '@/components/RefComponent.vue';
@Component({
components: { RefComponent },
})
export default class RefPage extends Vue {
@Ref('RefComponent') readonly RefC!: HTMLDocument;
@Ref('aButton') readonly ref!: HTMLButtonElement;
getRef() {
console.log(this.RefC);
console.log(this.ref);
}
}
@Emit 属性参数:@Emit(event?: string)
参数说明:
- @Emit 装饰器接收一个可选参数,充当事件名。如果没有提供这个参数,@Emit会将回调函数名的camelCase转为kebab-case,并将其作为事件名;
- @Emit的回调函数的参数,会在回调函数没有返回值的情况下,被$emit当做第二个参数使用。
- @Emit会将回调函数的返回值作为第二个参数,如果返回值是一个Promise对象,$emit会在Promise对象被标记为resolved之后触发;
="ts">
import {Vue, Component, Emit} from 'vue-property-decorator';
@Component
export default class "组件名" extends Vue{
mounted(){
this.$on('emit-todo', function(n) {
console.log(n)
})this.emitTodo('world');
}@Emit()
emitTodo(n: string){
console.log('hello');
}
}
运行上面的代码会打印 ‘hello’ ‘world’, 为什么呢? 让我们来看看它等同于什么
>
import Vue from 'vue';
export default {
mounted(){
this.$on('emit-todo', function(n) {
console.log(n)
})this.emitTodo('world');
},
methods: {
emitTodo(n){
console.log('hello');
this.$emit('emit-todo', n);
}
}
}
可以看到,在
@Emit
装饰器的函数会在运行之后触发等同于其函数名(驼峰式会转为横杠式写法
)的事件, 并将其参数传递给$emit
.如果我们想触发特定的事件呢,比如在
emitTodo
下触发reset
事件:="ts">
import {Vue, Component, Emit} from 'vue-property-decorator';
@Component
export default class "组件名" extends Vue{@Emit('reset')
emitTodo(n: string){}
}
我们只需要给装饰器
@Emit
传递一个事件名参数reset
,这样函数emitTodo
运行之后就会触发reset
事件.@Model 默认情况下,一个组件上的
v-model
会把 value
用作 prop
且把 input
用作 event
,但是一些输入类型比如单选框和复选框按钮可能想使用 value prop
来达到不同的目的。使用model
选项可以回避这些情况产生的冲突。下面是Vue官网的例子
Vue.component('base-checkbox', {
model: {
prop: 'checked',
event: 'change'
},
props: {
checked: Boolean
},
template: `
`
})
注意:你仍然需要在组件的 props 选项里声明 checked 这个 prop。
使用
vue-property-decorator
提供的@Model
改造上面的例子。import { Vue, Component, Model} from 'vue-property-decorator';
@Component
export class myCheck extends Vue{
@Model ('change', {type: Boolean})checked!: boolean;
}
@Provide/@Inject/@ProvideReactive/@InjectReactive 属性参数:
- @Provide(key?: string | symbol) / @Inject(options?: { from?: InjectKey, default?: any } | InjectKey) decorator
- @ProvideReactive(key?: string | symbol) / @InjectReactive(options?: { from?: InjectKey, default?: any } | InjectKey) decorator
- 提供/注入装饰器,
- key可以为string或者symbol类型,
- 相同点:Provide/ProvideReactive提供的数据,在内部组件使用Inject/InjectReactive都可取到
- 如果提供(ProvideReactive)的值被父组件修改,则子组件可以使用InjectReactive捕获此修改。
// 最外层组件
ProvideInjectPage页面
在ProvideInjectPage页面使用Provide,ProvideReactive定义数据,不需要props传递数据
然后爷爷套父母,父母套儿子,儿子套孙子,最后在孙子组件里面获取ProvideInjectPage
里面的信息
="ts">
import {
Vue, Component, Provide, ProvideReactive,
} from 'vue-property-decorator';
import provideGrandpa from '@/components/ProvideGParentComponent.vue';
@Component({
components: { provideGrandpa },
})
export default class ProvideInjectPage extends Vue {
@Provide('foo') foo = 'foo'
@ProvideReactive('reactiveKey1') reactiveKey1 = 'reactiveKey1'
@ProvideReactive('reactiveKey2') reactiveKey2 = 'reactiveKey2'
created() {
// 此处验证@Provide @ProvideReactive 键值被修改
this.foo = 'foo111'
this.reactiveKey1 = 'reactiveKey111'
this.reactiveKey2 = 'reactiveKey222'
}
}
}
// ...provideGrandpa调用父母组件
// ...ProvideParentComponent调用儿子组件
// ...ProvideSonComponent调用孙子组件
// 孙子组件,经过多层引用后,在孙子组件使用Inject可以得到最外层组件provide的数据哦
孙子的组件
爷爷组件里面的foo:{{ foo }}
爷爷组件里面的fooReactiveKey1:{{ reactiveKey1 }}
爷爷组件里面的fooReactiveKey2:{{ reactiveKey2 }}
="ts">
import {
Component, Vue, Inject, InjectReactive,
} from 'vue-property-decorator';
@Component
export default class ProvideGSonComponent extends Vue {
@Inject('foo') foo!: string
@InjectReactive('reactiveKey1') reactiveKey1!: string
@InjectReactive('reactiveKey2') reactiveKey2!: string
}
Mixins (在vue-class-component中定义) 在使用
Vue
进行开发时我们经常要用到混合,结合TypeScript
之后我们有两种mixins
的方法。一种是
vue-class-component
提供的.//定义要混合的类 mixins.ts
import Vue from 'vue'
import Component from 'vue-class-component'@Component // 一定要用Component修饰
export default class MyMixins extends Vue {
value = 'https://www.it610.com/article/Hello'
}
// 引入
import Component, { mixins } from 'vue-class-component'
import myMixins from './Mixins'@Component
export default class Project extends mixins(myMixins) {
created() {
console.log(this.value)
}
}
【Vue|vue-property-decorator用法详解】等同于
// Mixins.ts
//定义要混合的类 mixins.ts
import Vue from 'vue'
import { Component } from 'vue-property-decorator'@Component // 一定要用Component修饰
export default class MyMixins extends Vue {
value = 'https://www.it610.com/article/Hello'
}// 引入import { Component } from 'vue-property-decorator'
import myMixins from './Mixins'@Component
export default class Project extends myMixins {
created() {
console.log(this.value)
}
}
第二种方式是在
@Component
中混入.我们改造一下
mixins.ts
,定义vue/type/vue
模块,实现Vue
接口// 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 = 'https://www.it610.com/article/Hello'
}
混入
import { Vue, Component} from 'vue-property-decorator';
import myMixins from './Mixins';
@Component({
mixins: [myMixins],
created(){
console.log(this.value) // => Hello
}
})
export default class myComponent extends Vue{}
总结: 两种方式不同的是在定义
mixins
时如果没有定义vue/type/vue
模块, 那么在混入的时候就要继承
该mixins
;
如果定义vue/types/vue
模块,在混入时可以在@Component
中mixins
直接混入。推荐阅读
- vue项目判断|vue项目判断 是否是移动端 再依据判断跳转
- vue|vue3.0 typescript 创建项目,路由RouteConfig 报错 has no exported member ‘RouteConfig‘.ts
- 定位|Vue.js开发移动端经验总结
- vue.js|has no exported member
- ECMAScript|JavaScript性能优化具体实现-第二篇
- vue|发布angular指令,vue指令,js文件到npm的流程
- vue watch监听触发防抖节流
- spring|Vue-admin-template+SpringBoot+MyBatisPlus实现图书的增删改查功能
- 前端VUE|Vue用户管理(增删改查)功能详情