-
Vue2 中容易被忽略的两个重要的 API 介绍 Vue2 中封装 1<template> 2 <a-button 3 icon="sync" 4 title="刷新" 5 v-bind="$attrs" 6 v-on="$listeners" 7 /> 8</template> 9 10<script> 11/** 12* 和 a-button 外观、行为完全一致 13* 区别是预设 icon 和 title 属性 14*/ 15export default { 16 inheritAttrs: false, 17} …
Read More