关于Vue中$refs、$parent、$children的使用

vue

r

e

f

s

使

r

e

f

=

"

"

t

h

i

s

.

refs 的使用 类似于标记 用于父组件操作子组件的数据 子组件进行绑定ref=" " 在 父组件 进行操作数据 this.

refs的使用类似于标记用于父组件操作子组件的数据子组件进行绑定ref=""在父组件进行操作数据this.refs.son1.sonText = ‘二二二’

$parent的使用
在子组件上使用

p

a

r

e

n

t

t

h

i

s

.

parent this.

parentthis.parent.text=’ ’
使用或者修改

c

h

i

l

d

r

e

n

使

使

t

h

i

s

.

children的使用 在父组件上使用 this.

children的使用在父组件上使用this.children.sonText 父组件内如果有好几个子组件 返回一个数组
1 不知道数组第几个 遍历找到sonText的值;
2 知道下标进行查找

以上是 关于Vue中$refs、$parent、$children的使用 的全部内容, 来源链接: utcz.com/z/375278.html

回到顶部