提交 9b63366e 编写于 作者: 杜庆泉's avatar 杜庆泉

Update uts-component.md

上级 030d52cf
......@@ -833,18 +833,23 @@ NVUpdateStyles(styles: Map<String, any>){
</template>
<script>
export default {
data() {
return {
}
},
methods: {
// 调用组件内的方法
callComponentMethod: function() {
this.$refs["helloView"].doSth("param doSth");
},
}
// uvue 页面需要使用下面的引入代码,nvue 不需要
// import { UtsHelloViewElement } from '@/uni_modules/uts-hello-component'
export default {
data() {
return {
}
},
methods: {
// 调用组件内的方法
callComponentMethod: function() {
// nvue 页面调用方法
this.$refs["helloView"].doSth("param doSth");
// uvue 页面调用方法
// (this.$refs["helloView"] as UtsHelloViewElement).doSth('param doSth');
},
}
}
</script>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册