PHP前端开发

vue3怎么使用ref

百变鹏仔 3个月前 (10-30) #前端问答
文章标签 ref
vue 3 中使用 ref 可获取组件或元素引用,有两种方式创建 ref:使用 ref 属性:在组件模板中添加 ref 属性,指定一个变量名称。使用 ref 方法:在组件 setup 或 mounted 生命周期钩子中调用 ref 方法,传递一个变量名称。

Vue 3 中使用 ref

ref 是 Vue 3 中的一个特性,允许你获取组件或元素的引用。有两种方式可以创建 ref:

1. 使用 ref 属性

<template><input ref="inputRef"></template><script>export default {  setup() {    const inputRef = ref(null);    return {      inputRef,    };  },};</script>

这将在 inputRef 变量中提供对 元素的引用。

立即学习“前端免费学习笔记(深入)”;

2. 使用 ref 方法

<template><input v-ref:inputref></template><script>export default {  setup() {    const inputRef = ref(null);    return {      inputRef,    };  },  mounted() {    console.log(this.$refs.inputRef); // 输出对 `<input>` 元素的引用  },};</script>

使用 ref 方法时,你必须在组件的 mounted 生命周期钩子中访问引用。

使用 ref 的好处

使用 ref 有很多好处,包括:

使用 ref 的注意事项

需要注意以下几点: