其他分享
首页 > 其他分享> > ref数据获取

ref数据获取

作者:互联网

<template>
  <div id="app">
    <h2 v-text="appname" ref="title"></h2>
    <button  ref = 'btn' @click="show">点我显示</button>
  </div>
</template>

<script>
    export default {
        name: 'app',
        data() {
            return{
                appname:"666"
            }
        },
        methods:{
            show(){
                console.log(this.$refs);

            }
        }
}
</script>

<style>
</style>

this.$refs打印出来:

 

 this.$refs.title打印出来:

 

标签:return,name,appname,default,数据,refs,打印,获取,ref
来源: https://www.cnblogs.com/alannero/p/15208161.html