naive-ui/demo/documentation/components/button/zhCN/events.md
2019-10-12 16:15:20 +08:00

22 lines
255 B
Markdown

# 事件
处理按钮的事件。
```html
<n-button @click="handleClick">
Click Me
</n-button>
```
```js
export default {
data () {
return {
}
},
methods: {
handleClick () {
this.$NMessage.info('Button Clicked')
}
}
}
```