mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-27 05:00:48 +08:00
38 lines
681 B
Markdown
38 lines
681 B
Markdown
# Raw
|
|
```html
|
|
<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>
|
|
```
|
|
```js
|
|
import mdAdd from 'naive-ui/lib/icons/md-add'
|
|
import mdRemove from 'naive-ui/lib/icons/md-remove'
|
|
|
|
export default {
|
|
components: {
|
|
mdAdd,
|
|
mdRemove
|
|
},
|
|
data() {
|
|
return {
|
|
value: 5
|
|
};
|
|
}
|
|
};
|
|
```
|
|
```css
|
|
.n-badge {
|
|
margin: 0 32px 0 0;
|
|
}
|
|
``` |