ref定义响应式数据

<template>
  <div class="person">
    <h2>{{ age }}</h2>
    <button @click="ChangeAge">修改</button>
  </div>
</template>

<script setup lang="ts" name="person222">
import {ref} from 'vue'
let age = ref(18)
console.log(age.value)
//方法
function ChangeAge() {
  age.value += 1
}

</script>

<style scoped></style>

  

posted @ 2025-06-06 16:01  华腾智算  阅读(8)  评论(0)    收藏  举报
https://damo.alibaba.com/ https://tianchi.aliyun.com/course?spm=5176.21206777.J_3941670930.5.87dc17c9BZNvLL