码迷,mamicode.com
首页 > 移动开发 > 详细

uni-app $refs的基本用法

时间:2019-01-28 13:57:21      阅读:6972      评论:0      收藏:0      [点我收藏+]

标签:exp   efs   rom   组件   syn   mod   back   ejs   contain   

$refs的基本用法

一个对象(Object),持有注册过 ref 特性 的所有 DOM 元素和组件实例。

 

 

技术分享图片
<template>
    <view class="container" style="background: #0FAEFF;">
        <view class="child"> hi {{showModal}}</view>
    </view>
</template>
<script>
    export default {
        props: {
            showModal: {
                type: String,
                default: ‘hello‘
            }
        },
        data() {
            return {
                childdata: ‘child value‘
            };
        },
        methods: {
            sayHello() {
                console.info("--child:--" + this.showModal);
            }
        }
    }
</script>
 
child
技术分享图片
<template>
    <view class="container">
        <child :showModal="showModal" ref="vref"></child>
        
           <button @tap="refMethods" type="primary" >点击</button>
    </view>
</template>

<script>
    import child from "../../components/child.vue"

    export default {
        components: {
            child
        },
        data() {
            return {
                showModal: " parent say",
                parentValue: ‘‘,
                syncDate: ‘ p syncDate‘
            };
        },
        methods: {
            refMethods() {
                var child = this.$refs.vref;
                child.sayHello();
            }

        }
    }
</script>

<style>

</style>
parent

 

uni-app $refs的基本用法

标签:exp   efs   rom   组件   syn   mod   back   ejs   contain   

原文地址:https://www.cnblogs.com/J-wym/p/10329533.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!