vue實現雙向繫結的方法:1、利用v-model指令實現繫結,自定義元件上的v-model相當於傳遞了modelValue prop並接收丟擲的update:modelValue事件;2、利用vue-better-sync外掛實現繫結;3、利用v-bind.sync修飾符,語法「<ChildComponent :title.sync="pageTitle" />」。
本教學操作環境:windows7系統、vue3版,DELL G3電腦。
<ChildComponent v-model="pageTitle" />
<!-- 是以下的簡寫: -->
<ChildComponent :value="pageTitle" @input="pageTitle = $event" />
登入後複製
如果要將屬性或事件名稱更改為其他名稱,則需要在 ChildComponent 元件中新增 model
選項:
<!-- ParentComponent.vue -->
<ChildComponent v-model="pageTitle" />
登入後複製
// ChildComponent.vue
export default {
model: {
prop: 'title',
event: 'change'
},
props: {
// 這將允許 `value` 屬性用於其他用途
value: String,
// 使用 `title` 代替 `value` 作為 model 的 prop
title: {
type: String,
default: 'Default title'
}
}
}
登入後複製
所以,在這個例子中 v-model 是以下的簡寫:
<ChildComponent :title="pageTitle" @change="pageTitle = $event" />
登入後複製
在 Vue 3.x 中,自定義元件上的 v-model 相當於傳遞了 modelValue prop
並接收丟擲的 update:modelValue
事件:
<ChildComponent v-model="pageTitle" />
<!-- 是以下的簡寫: -->
<ChildComponent
:modelValue="pageTitle"
@update:modelValue="pageTitle = $event"
/>
登入後複製
Vue3
可以繫結多個v-model
, 例如:<ChildComponent v-model:title="pageTitle" v-model:name="pageName" />
有需求如此:開發一個 Prompt 元件,要求同步使用者的輸入,點選按鈕可關閉彈窗。
一般我們會這樣做:
<template>
<div v-show="_visible">
<div>完善個人資訊</div>
<div>
<div>尊姓大名?</div>
<input v-model="_answer" />
</div>
<div>
<button @click="_visible = !_visible">確認</button>
<button @click="_visible = !_visible">取消</button>
</div>
</div>
</template>
<script>
export default {
name: 'prompt',
props: {
answer: String,
visible: Boolean
},
computed: {
_answer: {
get() {
return this.answer
},
set(value) {
this.$emit('input', value)
}
},
_visible: {
get() {
return this.visible
},
set(value) {
this.$emit('update:visible', value)
}
}
}
}
</script>
登入後複製
寫一兩個元件還好,元件規模一旦擴大,寫雙向繫結真能寫出毛病來。於是,為了解放生產力,有了 vue-better-sync 這個輪子,且看用它如何改造我們的 Prompt 元件:
<template>
<div v-show="actualVisible">
<div>完善個人資訊</div>
<div>
<div>尊姓大名?</div>
<input v-model="actualAnswer" />
</div>
<div>
<button @click="syncVisible(!actualVisible)">確認</button>
<button @click="syncVisible(!actualVisible)">取消</button>
</div>
</div>
</template>
<script>
import VueBetterSync from 'vue-better-sync'
export default {
name: 'prompt',
mixins: [
VueBetterSync({
prop: 'answer', // 設定 v-model 的 prop
event: 'input' // 設定 v-model 的 event
})
],
props: {
answer: String,
visible: {
type: Boolean,
sync: true // visible 屬性可用 .sync 雙向繫結
}
}
}
</script>
登入後複製
vue-better-sync 統一了 v-model 和 .sync 傳遞資料的方式,你只需 this.actual${PropName} = newValue 或者 this.sync${PropName}(newValue) 即可將新資料傳遞給父元件。
GitHub:fjc0k/vue-better-sync
在某些情況下,我們可能需要對某一個 prop
進行「雙向繫結」(除了前面用 v-model 繫結 prop 的情況)。為此,我們建議使用 update:myPropName
丟擲事件。例如,對於在上一個範例中帶有 title prop 的 ChildComponent,我們可以通過下面的方式將分配新 value 的意圖傳達給父級:
this.$emit('update:title', newValue)
登入後複製
如果需要的話,父級可以監聽該事件並更新本地 data property。例如:
<ChildComponent :title="pageTitle" @update:title="pageTitle = $event" />
登入後複製
為了方便起見,我們可以使用 .sync 修飾符來縮寫,如下所示:
<ChildComponent :title.sync="pageTitle" />
登入後複製
vue3 移除
.sync
【相關推薦:、】
以上就是vue實現雙向繫結有哪幾個方法的詳細內容,更多請關注TW511.COM其它相關文章!