npm i -s vue-property-decorator
創(chuàng)新互聯(lián)建站是一家網(wǎng)站設計公司,集創(chuàng)意、互聯(lián)網(wǎng)應用、軟件技術(shù)為一體的創(chuàng)意網(wǎng)站建設服務商,主營產(chǎn)品:響應式網(wǎng)站、高端網(wǎng)站設計、成都營銷網(wǎng)站建設。我們專注企業(yè)品牌在網(wǎng)站中的整體樹立,網(wǎng)絡互動的體驗,以及在手機等移動端的優(yōu)質(zhì)呈現(xiàn)。網(wǎng)站建設、網(wǎng)站設計、移動互聯(lián)產(chǎn)品、網(wǎng)絡運營、VI設計、云產(chǎn)品.運維為核心業(yè)務。為用戶提供一站式解決方案,我們深知市場的競爭激烈,認真對待每位客戶,為客戶提供賞析悅目的作品,網(wǎng)站的價值服務。
1,@Component(options:ComponentOptions = {})
@Component 裝飾器可以接收一個對象作為參數(shù),可以在對象中聲明 components ,filters,directives 等未提供裝飾器的選項
雖然也可以在 @Component 裝飾器中聲明 computed,watch 等,但并不推薦這么做,因為在訪問 this 時,編譯器會給出錯誤提示
import { Vue, Component } from 'vue-property-decorator' @Component({ filters: { toFixed: (num: number, fix: number = 2) => { return num.toFixed(fix) } } }) export default class MyComponent extends Vue { public list: number[] = [0, 1, 2, 3, 4] get evenList() { return this.list.filter((item: number) => item % 2 === 0) } }
2,@Prop(options: (PropOptions | Constructor[] | Constructor) = {})
@Prop 裝飾器接收一個參數(shù),這個參數(shù)可以有三種寫法:
import { Vue, Component, Prop } from 'vue-property-decorator' @Componentexport default class MyComponent extends Vue { @Prop(String) propA: string | undefined @Prop([String, Number]) propB!: string | number @Prop({ type: String, default: 'abc' }) propC!: string }
等同于下面的 js 寫法
export default { props: { propA: { type: Number }, propB: { default: 'default value' }, propC: { type: [String, Boolean] } } }
注意:
3,@PropSync(propName: string, options: (PropOptions | Constructor[] | Constructor) = {})
propName: string 表示父組件傳遞過來的屬性名;
options: Constructor | Constructor[] | PropOptions 與 @Prop 的第一個參數(shù)一致;
@PropSync 會生成一個新的計算屬性。
import { Vue, Component, PropSync } from 'vue-property-decorator' @Component export default class MyComponent extends Vue { @PropSync('propA', { type: String, default: 'abc' }) syncedPropA!: string }
等同于下面的 js 寫法
export default { props: { propA: { type: String, default: 'abc' } }, computed: { syncedPropA: { get() { return this.propA }, set(value) { this.$emit('update:propA', value) } } } }
注意: @PropSync 需要配合父組件的 .sync 修飾符使用
4,@Model(event?: string, options: (PropOptions | Constructor[] | Constructor) = {})
@Model 裝飾器允許我們在一個組件上自定義 v-model ,接收兩個參數(shù):
event: string 事件名。
options: Constructor | Constructor[] | PropOptions 與 @Prop 的第一個參數(shù)一致。
import { Vue, Component, Model } from 'vue-property-decorator' @Component export default class MyInput extends Vue { @Model('change', { type: String, default: '123' }) value!: string }
等同于下面的 js 寫法
export default { model: { prop: 'value', event: 'change' }, props: { value: { type: String, default: '123' } } }
上面例子中指定的是 change 事件,所以我們還需要在 template 中加上相應的事件:
<template> <input type="text" :value="value" @change="$emit('change', $event.target.value)" /> </template>
對 自定義v-model 不太理解的同學,可以查看 自定義事件
5,@Watch(path: string, options: WatchOptions = {})
@Watch 裝飾器接收兩個參數(shù):
path: string 被偵聽的屬性名;
options?: WatchOptions={} options 可以包含兩個屬性 :
immediate?:boolean 偵聽開始之后是否立即調(diào)用該回調(diào)函數(shù);
deep?:boolean 被偵聽的對象的屬性被改變時,是否調(diào)用該回調(diào)函數(shù);
偵聽開始,發(fā)生在 beforeCreate 勾子之后, created 勾子之前
import { Vue, Component, Watch } from 'vue-property-decorator' @Component export default class MyInput extends Vue { @Watch('msg') onMsgChanged(newValue: string, oldValue: string) {} @Watch('arr', { immediate: true, deep: true }) onArrChanged1(newValue: number[], oldValue: number[]) {} @Watch('arr') onArrChanged2(newValue: number[], oldValue: number[]) {} }
等同于下面的 js 寫法
export default { watch: { msg: [ { handler: 'onMsgChanged', immediate: false, deep: false } ], arr: [ { handler: 'onArrChanged1', immediate: true, deep: true }, { handler: 'onArrChanged2', immediate: false, deep: false } ] }, methods: { onMsgVhanged(newValue, oldValue) {}, onArrChange1(newValue, oldValue) {}, onArrChange2(newValue, oldValue) {} } }
6,@Emit(event?: string)
import { Vue, Component, Emit } from 'vue-property-decorator' @Component export default class MyComponent extends Vue { count = 0 @Emit() addToCount(n: number) { this.count += n } @Emit('reset') resetCount() { this.count = 0 } @Emit() returnValue() { return 10 } @Emit() onInputChange(e) { return e.target.value } @Emit() promise() { return new Promise(resolve => { setTimeout(() => { resolve(20) }, 0) }) } }
等同于下面的 js 寫法
export default { data() { return { count: 0 } }, methods: { addToCount(n) { this.count += n this.$emit('add-to-count', n) }, resetCount() { this.count = 0 this.$emit('reset') }, returnValue() { this.$emit('return-value', 10) }, onInputChange(e) { this.$emit('on-input-change', e.target.value, e) }, promise() { const promise = new Promise(resolve => { setTimeout(() => { resolve(20) }, 0) }) promise.then(value => { this.$emit('promise', value) }) } } }
7,@Ref(refKey?: string)
@Ref 裝飾器接收一個可選參數(shù),用來指向元素或子組件的引用信息。如果沒有提供這個參數(shù),會使用裝飾器后面的屬性名充當參數(shù)
import { Vue, Component, Ref } from 'vue-property-decorator' import { Form } from 'element-ui' @Componentexport default class MyComponent extends Vue { @Ref() readonly loginForm!: Form @Ref('changePasswordForm') readonly passwordForm!: Form public handleLogin() { this.loginForm.validate(valide => { if (valide) { // login... } else { // error tips } }) } }
等同于下面的 js 寫法
export default { computed: { loginForm: { cache: false, get() { return this.$refs.loginForm } }, passwordForm: { cache: false, get() { return this.$refs.changePasswordForm } } } }
@Provide/@Inject 和 @ProvideReactive/@InhectReactive
由于平時基本不用到provide/inject選項,暫時先放著,以后有時間再研究
參考: https://github.com/kaorun343/...
總結(jié)
以上所述是小編給大家介紹的vue-property-decorator使用手冊,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對創(chuàng)新互聯(lián)網(wǎng)站的支持!
如果你覺得本文對你有幫助,歡迎轉(zhuǎn)載,煩請注明出處,謝謝!
網(wǎng)站欄目:詳解vue-property-decorator使用手冊
文章地址:http://aaarwkj.com/article36/iihppg.html
成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站導航、面包屑導航、品牌網(wǎng)站設計、響應式網(wǎng)站、網(wǎng)站內(nèi)鏈、營銷型網(wǎng)站建設
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)