mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-01-12 12:25:16 +08:00
356 B
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
}
}