<template ref="aaa" #就业> <view class="both"> <view class="mb20 mt20" style="font-weight: bold;font-size: 30rpx;">就业行业分布</view> <view class="frame"> <view class="frame-f">医疗保健</view> <tui-progress :percent="30.46" show-info></tui-progress> <view class="frame-f">医药</view> <tui-progress :percent="24.62" show-info></tui-progress> <view class="frame-f">医疗设备</view> <tui-progress :percent="10.29" show-info></tui-progress> <view class="frame-f">快消</view> <tui-progress :percent="6.19" show-info></tui-progress> <view class="frame-f">其他行业</view> <tui-progress :percent="18.83" show-info></tui-progress> </view> <view class="mb20 mt20" style="font-weight: bold;font-size: 30rpx;">岗位去向</view> <tui-charts-pie ref="aaa" diam="250" type="2" @click="onClick"></tui-charts-pie> <view class="mb20 mt20" style="font-weight: bold;font-size: 30rpx;">地区分布</view> <view class="frame"> <view class="frame-f">北京市</view> <tui-progress :percent="30.46" show-info></tui-progress> <view class="frame-f">华中地区</view> <tui-progress :percent="24.62" show-info></tui-progress> <view class="frame-f">深圳市</view> <tui-progress :percent="10.29" show-info></tui-progress> <view class="frame-f">西南地区</view> <tui-progress :percent="6.19" show-info></tui-progress> <view class="frame-f">广州市</view> <tui-progress :percent="18.83" show-info></tui-progress> </view> </view> </template> </gs-tabs>如何用uniapp的vue3获取上述代码插槽的ref
时间: 2024-03-05 18:52:05 浏览: 139
详解Angular 自定义结构指令
在uniapp的vue3中,可以通过以下方式获取上述代码插槽的ref:
1. 在模板中给插槽标签添加ref属性,如下所示:
```
<gs-tabs>
<template #就业 ref="mySlot">
<!-- 插槽内容 -->
</template>
</gs-tabs>
```
2. 在组件中通过`$refs`访问插槽的ref,如下所示:
```
<script>
export default {
methods: {
handleGetSlotRef() {
const mySlot = this.$refs.mySlot;
console.log(mySlot); // 打印出插槽的ref
}
}
}
</script>
```
需要注意的是,`$refs`只有在组件渲染完成后才能访问到,因此需要在合适的生命周期函数中或者事件处理函数中访问`$refs`。
阅读全文