mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
docs: add ref usage guide
This commit is contained in:
parent
988fc35a20
commit
46d32ae099
@ -189,3 +189,28 @@ iPhone X 等机型底部存在底部指示条,指示条的操作区域与页
|
|||||||
```
|
```
|
||||||
|
|
||||||
<img src="https://b.yzcdn.cn/vant/safearea.png" style="margin-top: 30px;">
|
<img src="https://b.yzcdn.cn/vant/safearea.png" style="margin-top: 30px;">
|
||||||
|
|
||||||
|
### 组件实例方法
|
||||||
|
|
||||||
|
Vant 中的许多组件提供了实例方法,调用实例方法时,我们需要通过 [ref](https://cn.vuejs.org/v2/api/#ref) 来注册组件引用信息,引用信息将会注册在父组件的`$refs`对象上。注册完成后,我们可以通过`this.$refs.xxx`访问到对应的组件实例,并调用上面的实例方法。
|
||||||
|
|
||||||
|
```html
|
||||||
|
<!-- 将该组件绑定到 this.$refs.checkbox 上 -->
|
||||||
|
<van-checkbox v-model="checked" ref="checkbox">
|
||||||
|
复选框
|
||||||
|
</van-checkbox>
|
||||||
|
```
|
||||||
|
|
||||||
|
```js
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
checked: false
|
||||||
|
};
|
||||||
|
},
|
||||||
|
// 注意:组件挂载后才能访问到 ref 对象
|
||||||
|
mounted() {
|
||||||
|
this.$refs.checkbox.toggle();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
Loading…
x
Reference in New Issue
Block a user