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

Vue--this.$refs 获取dom元素和组件(获取子组件的dom和方法)

时间:2019-10-02 12:26:40      阅读:87      评论:0      收藏:0      [点我收藏+]

标签:utf-8   http   nbsp   英文单词   调用   text   temp   单词   cee   

<!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>Document</title>
  <script src="./lib/vue-2.4.0.js"></script>
</head>

<body>
  <div id="app">
    <input type="button" value="获取元素" @click="getElement" ref="mybtn">

    <h3 id="myh3" ref="myh3">哈哈哈, 今天天气太好了!!!</h3>

    <hr>

    <login ref="mylogin"></login>
  </div>

  <script>

    var login = {
      template: <h1>登录组件</h1>,
      data() {
        return {
          msg: son msg
        }
      },
      methods: {
        show() {
          console.log(调用了子组件的方法)
        }
      }
    }

    // 创建 Vue 实例,得到 ViewModel
    var vm = new Vue({
      el: #app,
      data: {},
      methods: {
        getElement() {
          // console.log(document.getElementById(‘myh3‘).innerText)

          //  ref  是 英文单词 【reference】   值类型 和 引用类型  referenceError
          // console.log(this.$refs.myh3.innerText)

          // console.log(this.$refs.mylogin.msg)
          // this.$refs.mylogin.show()
        }
      },
      components: {
        login
      }
    });
  </script>
</body>

</html>

 

Vue--this.$refs 获取dom元素和组件(获取子组件的dom和方法)

标签:utf-8   http   nbsp   英文单词   调用   text   temp   单词   cee   

原文地址:https://www.cnblogs.com/fdxjava/p/11616961.html

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