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打印出来:

ref数据获取

 

 this.$refs.title打印出来:

ref数据获取

 

ref数据获取

上一篇:CentOS7 升级 GCC 到 5.4.0 版本


下一篇:条件查询和模糊查询