mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-02-11 13:10:26 +08:00
500 B
500 B
Disabled
Button can be disabled
<n-button
size="small"
disabled
>
Disabled
</n-button>
<n-button
disabled
type="primary"
>
Disabled
</n-button>
<n-button
disabled
round
type="primary"
>
regular size
</n-button>
<n-button
disabled
circle
>
<template v-slot:icon>
<md-save />
</template>
</n-button>
import mdSave from 'naive-ui/lib/icons/md-save'
export default {
components: {
mdSave
}
}
.n-button {
margin: 0 8px 8px 0;
}