Vue $attrs & inheritAttr實現(xiàn)button禁用效果案例
components/Button.vue
<template> <div> <button :disabled='$attrs.disabled'>點擊</button> </div></template> <script> export default { inheritAttrs: false, }</script> <style scoped> </style>
App.vue
<template> <div id='app'> <Parent></Parent> <Button disabled></Button> </div></template>
<script>import Parent from ’./components/Parent’import Button from ’./components/Button’; export default { name: ’App’, components: { Parent, Button }}</script>
<style>#app { font-family: Avenir, Helvetica, Arial, sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-align: center; color: #2c3e50; margin-top: 60px;}</style>
效果截圖1-inheritAttrs默認(rèn)true:
效果截圖2-inheritAttrs=false:
補充知識:vue中使用inheritAttrs實現(xiàn)組件的擴展性
1、首先我們創(chuàng)建一個input組件
<template> <div class='inputCom-wrap'> <input v-bind='$attrs' /> </div></template> <script lang='ts'>import { defineComponent } from ’vue’ export default defineComponent({ inheritAttrs:false,//不希望根直接繼承特性,而是使用$attrs自定義繼承,當(dāng)前組件的根就是inputCom-wrap setup () { return {} }})</script> <style scoped> </style>
2、使用組件的時候,隨便增加一些屬性,如
<inputCom type='text' class='input-a'></inputCom>
<inputCom type='password' class='input-b'></inputCom>
3、查看最終的渲染結(jié)果為(與props不會沖突)
以上這篇Vue $attrs & inheritAttr實現(xiàn)button禁用效果案例就是小編分享給大家的全部內(nèi)容了,希望能給大家一個參考,也希望大家多多支持好吧啦網(wǎng)。
相關(guān)文章:
1. python 實現(xiàn)圍棋游戲(純tkinter gui)2. Python加載數(shù)據(jù)的5種不同方式(收藏)3. python 基于Appium控制多設(shè)備并行執(zhí)行4. python如何實現(xiàn)word批量轉(zhuǎn)HTML5. python excel和yaml文件的讀取封裝6. 利用單元測試對PHP代碼進行檢查7. python3實現(xiàn)往mysql中插入datetime類型的數(shù)據(jù)8. Java8內(nèi)存模型PermGen Metaspace實例解析9. python爬蟲實戰(zhàn)之制作屬于自己的一個IP代理模塊10. moment轉(zhuǎn)化時間戳出現(xiàn)Invalid Date的問題及解決
