未来鸟

搜索组件

搜索组件库和组件

Button 按钮

Ant Design Vue 按钮组件展示(Vue 3)

Vue 3 组件
按钮类型
Vue 3 代码示例
<template>
  <a-button type="primary">主要按钮</a-button>
  <a-button>默认按钮</a-button>
  <a-button type="dashed">虚线按钮</a-button>
  <a-button type="text">文字按钮</a-button>
  <a-button type="link">链接按钮</a-button>
  <a-button danger>危险按钮</a-button>
</template>