mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-27 05:00:48 +08:00
406 B
406 B
Event
Blur & change events are exposed.
<n-input-number
v-model:value="value"
@update:value="handleChange"
@blur="handleBlur"
/>
export default {
inject: ['message'],
data () {
return {
value: 0
}
},
methods: {
handleChange (v) {
this.message.info(`value: ${v}`)
},
handleBlur (v) {
this.message.info('blur: ' + v)
}
}
}