码迷,mamicode.com
首页 > 其他好文 > 详细

组件通信 $ref

时间:2019-09-18 10:52:32      阅读:92      评论:0      收藏:0      [点我收藏+]

标签:OLE   class   src   hello   time   initial   pre   method   ace   

(1)放在dom上表示获取当前dom元素,

(2)放到组件上表示获取当前组件实例

(3)在v-for中获取的是集合

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>组件通信 ref</title>
    <script src="./node_modules/vue/dist/vue.js"></script>
</head>
<body>
    <div id="app">
        <parent ref="parent"></parent>
    </div>
</body>
<script>
    Vue.component(parent,{
     template:`<div><span v-if="isShow">hello world</span></div>`,
     data() {
       return {
          isShow:false
       }
     },
     methods: {
        Show() {
             this.isShow = true;
        }
     },
   })
   let  vm = new Vue({
         el:#app,
         mounted() {
            //  console.log(this.$refs.parent.Show())
            setTimeout(()=>{
                this.$refs.parent.Show()
            },2000)
         },
   })
   //hello
</script>
</html>

 

 

组件通信 $ref

标签:OLE   class   src   hello   time   initial   pre   method   ace   

原文地址:https://www.cnblogs.com/guangzhou11/p/11539929.html

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