概述
普通我们使用js
document.querySelector('#title').onclick=function(){
alert('1234');
}
封装成方法的话
funciton myFa(Father){
alert(father);
}
vue 如何写呢
html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<div class="app">
{{message}}
<ul>
<li v-for="color in colors">
{{color}}
</li>
</ul>
<ul>
<li v-for="item in home" v-on:click="myFa(item.father)">
{{item.father}}
</li>
</ul>
</div>
<script src="https://unpkg.com/vue"></script>
</body>
js
var app=new Vue({
el:'.app',
data:{
message:'hello',
colors:['black','red','blue'],
home:[{father:'tom'},{father:'bob'}],
},
methods:{
myFa:function(father){
alert('我的爸爸是'+father)
}
}
});
官方文档
https://cn.vuejs.org/v2/api/#v-on
最后
以上就是沉静咖啡豆为你收集整理的vue v-on 与 methods的全部内容,希望文章能够帮你解决vue v-on 与 methods所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复