mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-01-12 12:25:16 +08:00
697 B
697 B
Raw
<n-space :size="24" align="center" item-style="display: flex;">
<n-badge :value="value" :max="15" />
<n-badge :value="value" dot/>
<n-button-group>
<n-button @click="value = Math.min(16, value + 1)">
<template v-slot:icon>
<n-icon><md-add /></n-icon>
</template>
</n-button>
<n-button @click="value = Math.max(0, value - 1)">
<template v-slot:icon>
<n-icon><md-remove /></n-icon>
</template>
</n-button>
</n-button-group>
</n-space>
import {
MdAdd,
MdRemove
} from '@vicons/ionicons-v4'
export default {
components: {
MdAdd,
MdRemove
},
data () {
return {
value: 5
}
}
}