你瞅啥呢

2021-11-10 vue computed方法

2021-11-10
例:

<template>
<div>{{msg1}}</div>
</template>

export default {
data(){
return {
msg: 'hello'
}
},
computed:{
msg1(){
return this.msg + ' world'
}
}
}

看不懂吧?传送门:https://www.cnblogs.com/qianxiaox/p/13704845.html

posted @ 2022-04-02 11:09  叶乘风  阅读(30)  评论(0)    收藏  举报