mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-02-05 13:00:47 +08:00
355 B
355 B
形状
按钮拥有不同的形状。
<n-space>
<n-button circle>
<template #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
}
}