标签:his eth inpu ken attr 异步 ext 选项 自动
项目中:
<div id="app">
<p> {{split_msg}} </p>
</div>
new Vue({
el:‘#app‘,
data:{
msg:‘xixihaha‘
},
computed:{//这里存放的是多个方法,这些方法往往都和data选项中的数据有关系
split_msg() {
return this.msg.split(‘‘)
}
}
})
<div id="app">
<input type="text" v-model="msg">
<input type="text" v-model="num">
</div>
new Vue({
el:‘#app‘,
data:{
msg:‘hello‘,
num:‘haha‘
},
watch:{
msg(){
console.log(‘改变啦‘)
},
num:{//深度监听
deep:true,
handler(){
console.log(‘我也改变了‘)
}
}
}
})
computed vs methods
标签:his eth inpu ken attr 异步 ext 选项 自动
原文地址:https://www.cnblogs.com/zhaoyingzi/p/10920082.html