关于Vue中data中定义的函数的this指向
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<div id="box">
<button @click="one">this指向window</button>
<button @click="two">this指向Vue实例vm</button>
</div>
<body>
<script src="../libs/vue.min.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript">
var vm = new Vue({
el: "#box",
data:{
one:function(){
console.log(this)
}
},
methods:{
two:function(){
console.log(this)
}
}
})
</script>
</body>
</html>