<template> <view class="range"> <view ref="initWidth" class="initWidth">354754</view> </view> </template> <script> export default { data() { return { }; }, mounted() { console.log(this.$refs); } } </script> <style lang="stylus"> </style>
时间: 2023-08-14 16:32:28 浏览: 81
cpp代码-模板 泛型 template<typename> template<class>
你的代码中使用了`ref="initWidth"`来引用一个DOM元素,这是正确的。但是你在`mounted`钩子函数中打印输出`this.$refs`时,结果仍然是空对象。这有可能是因为你的组件模板中的`view`元素是通过Vue的运行时编译器进行编译的,而不是通过Vue的模板编译器进行编译的。
如果你使用的是Vue的单文件组件(.vue文件),则可以通过配置Vue的构建选项来启用模板编译器,例如:
```javascript
// vue.config.js
module.exports = {
runtimeCompiler: true
}
```
如果你使用的是Vue CLI创建的项目,默认情况下已经启用了模板编译器,不需要额外的配置。
另外,你可以尝试在模板中使用`v-if`等指令来确保DOM元素已经被正确渲染到页面上,例如:
```html
<template>
<div>
<div v-if="show" ref="initWidth">354754</div>
</div>
</template>
<script>
export default {
data() {
return {
show: false
};
},
mounted() {
console.log(this.$refs);
},
created() {
this.show = true;
}
};
</script>
```
这样,在组件`mounted`钩子函数中打印输出`this.$refs`时,就会正确地输出DOM元素的引用。
阅读全文