ref标签(模板引用)
手动操作 DOM,使用模板引用,就是指向模板中一个 DOM 元素的 ref
<p ref="pElementRef">hello</p>
要访问该引用,我们需要声明一个同名的 ref:
const pElementRef = ref(null)
生命周期
<template>
<!-- html -->
<div class="app">
<Todo/>
<p ref="pElementRef">hello</p>
</div>
</template>
<script lang="ts" setup>
import Todo from './components/Todo.vue';
import { ref,onMounted } from 'vue';
const pElementRef = ref()
onMounted(() => {
pElementRef.value.textContent = 'bye'
})
</script>
<style>
</style>
标签:生命周期,pElementRef,学习,vue,引用,008,ref,模板
From: https://www.cnblogs.com/ayubene/p/18085685