我是靠谱客的博主 冷静黑夜,最近开发中收集的这篇文章主要介绍Vue ref 属性,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

ref 被用来给元素或子组件注册引用信息(id的替代者)。

  • 应用在html标签上获取的是真实DOM元素,应用在组件标签上获取的是组件实例对象VC
  • 使用方式
    • 打标识:

      或 想当于 id=“xxx”
    • 获取: this.$refs.xxx或 document.getElementById(“xxx”)
<template>
  <div>
    <h1 v-text="msg" ref="title"></h1>
    <button ref="btn" @click="showDOM">点我输出上方的DOM元素</button>
    <School ref="sch"/>
  </div>
</template>

<script>
  import School from './components/School'

  export default {
    name:'App',
    components:{ School },
    data() {
      return {
        msg:'欢迎学习Vue!'
      }
    },
    methods: {
      showDOM(){
        console.log(this.$refs.title)	// 真实DOM元素
        console.log(this.$refs.btn)		// 真实DOM元素
        console.log(this.$refs.sch)		// School组件的实例对象(vc)
      }
    },
  }
</script>

最后

以上就是冷静黑夜为你收集整理的Vue ref 属性的全部内容,希望文章能够帮你解决Vue ref 属性所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(43)

评论列表共有 0 条评论

立即
投稿
返回
顶部