uniapp修改组件里面的变量

文章描述:

uniapp直接更新组件里面的值

 

 

<template>
  <view>
    <my-component ref="myComponent" />
  </view>
</template>

 

 

this.$refs.myComponent.message = 'Hello, uni-app!';

 

发布时间:2024/12/13

发表评论