202012-07 Vue $attrs & inheritAttr实现button禁用效果案例 components/Button.vue<template><div><button:disabled="$attrs.disabled">点击</button></div></template><script>exportdefault{inheritAttrs:false,}</script><stylescoped></style>App.vue<template><divid="app"><Parent></Parent><Buttondisabled></Button></div></template><script>importParentfrom'./components/Parent'importButtonfrom'./components/Button';exportdefault{name:'... 继续阅读 >