<template>
<div class="person">
<h2>a</h2>
<h2 ref="char">b</h2>
<button @click="showlog">show</button>
</div>
</template>
<script lang="ts" setup name = "Person">
import { ref } from 'vue'
let char = ref() // char用来存储ref标记的内容
// function
function showlog() {
console.log(char.value)
}
</script>
<style scoped>
/* 可以添加样式 */
</style>
标签的ref属性
最新推荐文章于 2025-03-26 07:30:00 发布