mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-01-12 12:25:16 +08:00
255 B
255 B
事件
处理按钮的事件。
<n-button @click="handleClick">
Click Me
</n-button>
export default {
data () {
return {
}
},
methods: {
handleClick () {
this.$NMessage.info('Button Clicked')
}
}
}