本篇文章為大家展示了inheritAttrs如何在Vue中使用,內(nèi)容簡明扼要并且容易理解,絕對(duì)能使你眼前一亮,通過這篇文章的詳細(xì)介紹希望你能有所收獲。
創(chuàng)新互聯(lián)于2013年創(chuàng)立,先為長豐等服務(wù)建站,長豐等地企業(yè),進(jìn)行企業(yè)商務(wù)咨詢服務(wù)。為長豐企業(yè)網(wǎng)站制作PC+手機(jī)+微官網(wǎng)三網(wǎng)同步一站式服務(wù)解決您的所有建站問題。先看代碼
<body> <div id="app" class="vueclass"> <my-com title="標(biāo)題" wx-attr1="未定義屬性1" wx-attr2="未定義屬性2"></my-com> </div> <script type="text/javascript"> Vue.component("my-com",{ props:{ title:String, }, inheritAttrs:false, template:` <div wx-attr1="hello" > <h2>{{title}}</h2> </div> `, }) const App = new Vue({ el:"#app", data:{ }, methods:{ } }) </script> </body>
當(dāng)inheritAttrs的值為false時(shí),自定義屬性是插入不到我們的組件中的,結(jié)果如下
當(dāng)inheritAttrs的值為true時(shí),自定義屬性可以插入到我們的組件中,并且會(huì)覆蓋掉在組件中相同未定義屬性名稱的值,結(jié)果如下
但在組件中定義的class屬性和style屬性,使用inheritAttrs屬性并不能阻礙class屬性和style屬性傳到模板中,如果模板中也存在class屬性和style屬性,這樣屬性會(huì)疊加到一起
結(jié)果如下
還有一種情況,先看代碼
<body> <div id="app" class="vueclass"> <my-com title="標(biāo)題" wx-attr1="未定義屬性1" wx-attr2="未定義屬性2" class="wxClass" ></my-com> </div> <script type="text/javascript"> Vue.component("my-com",{ props:{ title:String, }, inheritAttrs:, template:` <div wx-attr1="hello" class="div1" v-bind="$attrs"> <h2>{{title}}</h2> </div> `, }) const App = new Vue({ el:"#app", data:{ }, methods:{ } }) </script> </body>
當(dāng)模板里綁定v-bind="$attrs"時(shí),inheritAttrs為true時(shí),自定義屬性可以插入到我們的組件中,并且會(huì)覆蓋掉在組件中相同未定義屬性名稱的值,結(jié)果如下
當(dāng)模板里綁定v-bind="$attrs"時(shí),inheritAttrs為false時(shí),自定義屬性可以插入到我們的組件中,但不會(huì)覆蓋掉在組件中相同未定義屬性名稱的值,結(jié)果如下
當(dāng)模板里綁定v-bind="$attrs"時(shí),并不會(huì)影響class屬性與style屬性,組件里的值依然會(huì)疊加到模板里
上述內(nèi)容就是inheritAttrs如何在Vue中使用,你們學(xué)到知識(shí)或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識(shí)儲(chǔ)備,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。
文章名稱:inheritAttrs如何在Vue中使用-創(chuàng)新互聯(lián)
網(wǎng)頁鏈接:http://jinyejixie.com/article42/hgihc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供服務(wù)器托管、全網(wǎng)營銷推廣、App設(shè)計(jì)、網(wǎng)站改版、用戶體驗(yàn)、虛擬主機(jī)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容