v-slot和slot、slot-scope之間相互替換實(shí)例
如果組件文檔里面用的是v-slot,而你用的是vue2.6之前的版本,則需要替換v-slot:所以有兩種替換方式,注意看兩塊v-slot有啥不同,你就知道你該怎么用slot-scope和slot來替換文檔中的v-slot了
v-slot使用方式1:
<template v-slot:operate="{ row }"><template>
則可替換為:
<template slot="operate" slot-scope="{ row }"></template>
v-slot使用方式2:
<template v-slot="{ row }"><template>
則可替換為:
<template slot-scope="row"></template>
先記錄后期再完善,趕項(xiàng)目去了
補(bǔ)充知識(shí):V-for and slot-scoped報(bào)錯(cuò)問題
此場(chǎng)景是為了用v-for動(dòng)態(tài)渲染表格的slot
可能會(huì)這么寫
<a-table> <span v-for="(item, index) in header" :key="index" :slot="item.dataIndex" slot-scope="text" > {{ text }} </span> </a-table>
但是這樣子會(huì)報(bào)錯(cuò),因?yàn)関-for和slot-scope在同一級(jí)
Ambiguous combined usage of slot-scope and v-for on (v-for takes higher priority). Use a wrapper < template> for the scoped slot to make it clearer.
提示在外邊包一層< template>,于是你可能改成下面這樣,但是也會(huì)報(bào)錯(cuò)
<a-table> <template v-for="(item, index) in header" :key="index"> <span :slot="item.dataIndex" slot-scope="text" > {{ text }} </span> </template> </a-table> < template> cannot be keyed. Place the key on real elements instead.
提示< template>template不能寫key, 即使沒有這個(gè)錯(cuò),表格數(shù)據(jù)也不會(huì)渲染出來,因?yàn)檫@一層沒有slot,應(yīng)該說slot應(yīng)該是放最外面,同時(shí)把:key放里面
改成如下
<a-table> <template v-for="(item, index) in header" :slot="item.dataIndex" slot-scope="text"> <span :key="index"> {{ text }} </span> </template> </a-table>
以上解決問題
有個(gè)slot沒有渲染的問題
<template v-for="(slotname, idx) in ['status', 'sub_account_status']" :slot="slotname" slot-scope="text" > <span :key="idx"> <a-tag v-if="text === '正常'" color="blue">{{ text }}</a-tag> <a-tag v-else color="red">{{ text }}</a-tag> </span> </template> <!-- 包名稱、關(guān)聯(lián)賬號(hào) --> <template v-for="(slotname, idx) in ['app_name', 'roles']" :slot="slotname" slot-scope="text" > <span :key="idx"> <a-tooltip placement="top" > <template slot="title"> <span v-for="(item, index) in text" :key="index">{{ item }}<br/></span> </template> <div class="tableHidden"> <a-tag v-for="(item, index) in text" :key="index">{{ item }} </a-tag> </div> </a-tooltip> </span> </template>
好像是因?yàn)?個(gè)v-for="(slotname, idx)"里的slotname名字一樣了,對(duì)的,就是取的臨時(shí)變量名,修改成不一樣的就好了,神奇
<template v-for="(name, idx) in ['status', 'sub_account_status']" :slot="name" slot-scope="text" > // 上面那個(gè)name <span :key="idx"> 。。。 </span> </template> <!-- 包名稱、關(guān)聯(lián)賬號(hào) --> <template v-for="(slotname, idx) in ['app_name', 'roles']" :slot="slotname" slot-scope="text" > <span :key="idx"> 。。。 </a-tooltip> </span> </template>
以上這篇v-slot和slot、slot-scope之間相互替換實(shí)例就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持腳本之家。
相關(guān)文章
vue iview實(shí)現(xiàn)分頁(yè)功能
這篇文章主要為大家詳細(xì)介紹了vue iview實(shí)現(xiàn)分頁(yè)功能,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2022-07-07vant組件中 dialog的確認(rèn)按鈕的回調(diào)事件操作
這篇文章主要介紹了vant組件中 dialog的確認(rèn)按鈕的回調(diào)事件操作,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過來看看吧2020-11-11vue開發(fā)移動(dòng)端使用better-scroll時(shí)click事件失效的解決方案
這篇文章主要介紹了vue開發(fā)移動(dòng)端使用better-scroll時(shí)click事件失效的解決方案,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教2021-07-07詳解Electron中如何使用SQLite存儲(chǔ)筆記
這篇文章主要為大家介紹了Electron中如何使用SQLite存儲(chǔ)筆記示例詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪2022-11-11vue中radio單選框如何實(shí)現(xiàn)取消選中狀態(tài)問題
這篇文章主要介紹了vue中radio單選框如何實(shí)現(xiàn)取消選中狀態(tài)問題,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教2023-05-05詳解vue后臺(tái)系統(tǒng)登錄態(tài)管理
這篇文章主要介紹了vue后臺(tái)系統(tǒng)登錄管理,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2019-04-04vue實(shí)現(xiàn)動(dòng)態(tài)表格提交參數(shù)動(dòng)態(tài)生成控件的操作
這篇文章主要介紹了vue實(shí)現(xiàn)動(dòng)態(tài)表格提交參數(shù)動(dòng)態(tài)生成控件的操作,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過來看看吧2020-11-11