We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent baf9f6d commit f1b2b32Copy full SHA for f1b2b32
readme.md
@@ -91,19 +91,19 @@ import 'mint-ui/lib/toast/style.css';
91
#### 补充
92
93
- 关于事件绑定
94
-- 在 Vue 2.0 中,为自定义组件绑定原生事件必须使用 *.native* 修饰符:
+- 在 Vue 2.0 中,为自定义组件绑定原生事件必须使用 __.native__ 修饰符:
95
96
```js
97
<my-component @click.native="handleClick">Click Me</my-component>
98
```
99
100
-- 从易用性的角度出发,我们对 *Button* 组件进行了处理,使它可以监听 *click* 事件:
+- 从易用性的角度出发,我们对 __Button__ 组件进行了处理,使它可以监听 __click__ 事件:
101
102
103
<mt-button @click="handleButtonClick">Click Me</mt-button>
104
105
106
-- 但是对于其他组件,还是需要添加 *.native* 修饰符。
+- 但是对于其他组件,还是需要添加 __.native__ 修饰符。
107
108
109
- 来源: http://mint-ui.github.io/docs/#!/zh-cn2
0 commit comments