【Vue】条件渲染

发布时间:2024年01月19日
<script setup>
import {ref}from 'vue'
  let counter=ref(10)
  function increase(){
    counter.value++
  }
  function decrease(){
    counter.value--
  }
  function isTooBig(counter){
    return counter>15
  }
</script>

<template>
  <button @click="increase" v-if="!isTooBig(counter)">+</button>
  <p id="id1">{{ counter }}</p>
  <button @click="decrease" v-if="counter>=10">-</button>
</template>

<style scoped>
#id1{
  color: aqua;
  font-size: 40px;
}
</style>

文章来源:https://blog.csdn.net/m0_69886881/article/details/135701974
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。