关于前端:antdesign开发记录汇总

11次阅读

共计 250 个字符,预计需要花费 1 分钟才能阅读完成。

1: 给 a -modal 增加按钮

<a-modal title="搜寻条件" v-model="searchModal">
  <template slot="footer">
    <a-button key="back" @click="cancel"> 勾销 </a-button>
    <a-button key="submit" type="primary" @click="confirm"> 搜寻 </a-button>
    <a-button @click="reset"> 重置 </a-button>
  </template>
</a-modal>

正文完
 0