naive-ui/demo/documentation/components/button/zhCN/shape.demo.md
2020-11-03 18:56:13 +08:00

356 B

形状

按钮拥有不同的形状。

<n-space>
  <n-button circle>
    <template v-slot:icon>
      <cash-icon />
    </template>
  </n-button>
  <n-button round>圆角</n-button>
  <n-button></n-button>
</n-space>
import { CashOutline as CashIcon } from 'vicons/ionicons-v5'

export default {
  components: {
    CashIcon
  }
}