<template>
<div class="hello">
<!-- 写法1 -->
<div>
<label v-if="count < 0">我还没出生</label>
<label v-else-if="count === 0">我诞生了</label>
<label v-else-if="count <= 3">我还是个婴儿</label>
<label v-else-if="count < 15">我还是个少年</label>
<label v-else>我突然间长大了</label>
</div>
<!-- 写法2 -->
<div>
<label>{{countMsg}}</label>
</div>
</div>
</template>
<script>
export default {
name: 'HelloWorld',
data () {
return {
count: -21
}
},
methods: {
},
computed: {
// 写法2
countMsg () {
if (this.count < 0) {
return '我还没出生'
} else if (this.count === 0) {
return '我诞生了'
} else if (this.count <= 3) {
return '我还是个婴儿'
} else if (this.count < 15) {
return '我还是个少年'
} else {
return '我突然间长大了'
}
}
},
async created () {
}
}
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
</style>
vue v-if v-else-if v-else 在简单场景中使用computed计算属性的替换写法
最新推荐文章于 2025-01-09 10:51:09 发布
博客介绍了在简单场景下,使用Vue的v-if、v-else-if、v-else指令时,可用computed计算属性进行替换的写法,聚焦于Vue开发中条件判断的不同实现方式。
1378

被折叠的 条评论
为什么被折叠?



