這篇文章主要講解了“vue中如何自定義組件傳值”,文中的講解內(nèi)容簡(jiǎn)單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來(lái)研究和學(xué)習(xí)“vue中如何自定義組件傳值”吧!
創(chuàng)新互聯(lián)公司專(zhuān)注為客戶(hù)提供全方位的互聯(lián)網(wǎng)綜合服務(wù),包含不限于網(wǎng)站設(shè)計(jì)、網(wǎng)站制作、茂南網(wǎng)絡(luò)推廣、成都微信小程序、茂南網(wǎng)絡(luò)營(yíng)銷(xiāo)、茂南企業(yè)策劃、茂南品牌公關(guān)、搜索引擎seo、人物專(zhuān)訪、企業(yè)宣傳片、企業(yè)代運(yùn)營(yíng)等,從售前售中售后,我們都將竭誠(chéng)為您服務(wù),您的肯定,是我們最大的嘉獎(jiǎng);創(chuàng)新互聯(lián)公司為所有大學(xué)生創(chuàng)業(yè)者提供茂南建站搭建服務(wù),24小時(shí)服務(wù)熱線:13518219792,官方網(wǎng)址:aaarwkj.com
自定義組件傳值
常規(guī)prop-event
父組件
<prop-event-value :address="address" @update="val => address = val" key="4"></prop-event-value> <script> import propEventValue from './components/prop-event-value.vue' export default { name: 'app', components: { propEventValue }, data() { return { address: '' } } } </script>
子組件
<template> <div> <p>prop-event</p> <label for="address">地址</label> <input type="text" id="address" v-model="tempAddress"> </div> </template> <script> export default { name: 'prop-event', props: ['address'], data() { return { tempAddress: this.address } }, watch: { tempAddress(newVal) { this.$emit('update', newVal) } } } </script>
需要注意:不要直接在子組件內(nèi)操作父組件的內(nèi)容
組件實(shí)例的作用域是孤立的。每次父組件更新時(shí),子組件的所有 prop 都會(huì)更新為最新值。這意味著不能 (也不應(yīng)該) 在子組件的模板內(nèi)直接引用父組件的數(shù)據(jù)。如果你這么做了,Vue 會(huì)在控制臺(tái)給出警告。
export default { name: 'prop-event', props: ['address'], watch: { address(newVal) { this.$emit('update', newVal) } } }
如將上述代碼替換子組件,內(nèi)容會(huì)報(bào)錯(cuò)!
修飾符.sync
父組件
<my-sync-value :address.sync="address" key="5"></my-sync-value> <script> import mySyncValue from './components/my-sync-value.vue' export default { name: 'app', components: { mySyncValue }, data() { return { address: '' } } } </script>
子組件
<template> <div> <p>my-sync</p> <label for="address">地址</label> <input type="text" id="address" v-model="tempAddress"> </div> </template> <script> export default { name: 'my-sync', props: ['address'], data() { return { tempAddress: this.address } }, watch: { tempAddress(newVal) { // 必須是這個(gè)update:address this.$emit('update:address', newVal) } } } </script>
prop-update:[prop]語(yǔ)法糖,與prop-event對(duì)比的優(yōu)勢(shì):父組件無(wú)需監(jiān)聽(tīng)事件@update="val => address = val",自動(dòng)監(jiān)聽(tīng)update:[prop]事件。
雙向數(shù)據(jù)綁定v-model
所以要讓組件的 v-model 生效,它應(yīng)該 (從 2.2.0 起是可配置的):
接受一個(gè) value prop
在有新的值時(shí)觸發(fā) input 事件并將新值作為參數(shù)
父組件
<my-vmodel-value v-model="address" key="6"></my-vmodel-value> <script> import myVmodelValue from './components/my-vmodel-value.vue' export default { name: 'app', components: { myVmodelValue }, data() { return { address: '' } } } </script>
子組件
<template> <div> <p>my-vmodel</p> <label for="address">姓名</label> <input type="text" id="address" v-model="tempAddress"> </div> </template> <script> export default { name: 'my-vmodel', props: ['value'], data() { return { tempAddress: this.value } }, watch: { tempAddress(newVal) { // 必須是input this.$emit('input', newVal) } } } </script>
prop-input語(yǔ)法糖,父組件v-model默認(rèn)監(jiān)聽(tīng)input事件
需要注意,這里必須觸發(fā)input事件,當(dāng)然也可以自定v-model屬性值和事件,請(qǐng)參照自定義組件的v-model
vuex
通過(guò)store傳值,這里后續(xù)單獨(dú)講述vuex。
單向數(shù)據(jù)流
上述已經(jīng)提及,在子組件內(nèi)部改變 prop,Vue會(huì)在控制臺(tái)給出告警。但經(jīng)常開(kāi)發(fā)周靜,我們很容易忍不住修改prop中的數(shù)據(jù),如:
Prop 作為初始值傳入后,子組件想把它當(dāng)作局部數(shù)據(jù)來(lái)用;
Prop 作為原始數(shù)據(jù)傳入,由子組件處理成其它數(shù)據(jù)輸出。
對(duì)這兩種情況,正確的應(yīng)對(duì)方式是:
問(wèn)題1:定義一個(gè)局部變量,并用 prop 的值初始化它:
props: ['initialCounter'], data: function () { return { counter: this.initialCounter } }
問(wèn)題2:定義一個(gè)計(jì)算屬性,處理 prop 的值并返回:
props: ['size'], computed: { normalizedSize: function () { return this.size.trim().toLowerCase() } }
感謝各位的閱讀,以上就是“vue中如何自定義組件傳值”的內(nèi)容了,經(jīng)過(guò)本文的學(xué)習(xí)后,相信大家對(duì)vue中如何自定義組件傳值這一問(wèn)題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!
網(wǎng)頁(yè)標(biāo)題:vue中如何自定義組件傳值
分享地址:http://aaarwkj.com/article38/gooesp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供面包屑導(dǎo)航、自適應(yīng)網(wǎng)站、、全網(wǎng)營(yíng)銷(xiāo)推廣、Google、網(wǎng)站內(nèi)鏈
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶(hù)投稿、用戶(hù)轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)