vue ref操作

Posted jiahaojava

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue ref操作相关的知识,希望对你有一定的参考价值。

                         ref 获取组件的信息

技术分享图片

 



<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
    <title>Title</title>
<script src="../vue.js"></script>
</head>
<body>
<div id="app">
<button @click="getEl">getEL</button>
<h3 ref="myh3">今天天气还不错!!!</h3>
<hr/>
<login ref="mylogin"></login>
</div>
</body>
<script>
var login ={
template:"<h3>我是子组件</h3>",
data(){
return {
mes:"我是之组件数据"
}
},
methods:{
show(){
console.log("我是之组件方法");
}
}
}
var vm = new Vue({
el: "#app",
data: {
mes: "hello Vue"
},
methods: {
getEl() {
console.log(this.$refs.myh3.innerHTML);
console.log(this.$refs.mylogin.mes);
this.$refs.mylogin.show();
}
},
components:{
login
}
});
</script>
</html>















































以上是关于vue ref操作的主要内容,如果未能解决你的问题,请参考以下文章

PHP必用代码片段

php 【PHP】时刻操作(オブジェクト指向ver)ref:https://qiita.com/_bns/items/3d2bff4d5130693b9b4b

PHP代码-psysh调试代码片段工具

超实用的php代码片段

比较有用的php代码片段

php 【PHP】任意の时刻を操作する(ふるいやり方)ref:https://qiita.com/_bns/items/06ca41beb22a301d5026