@@ -66,8 +66,11 @@ export default defineComponent({
onMounted(() => {
nextTick(() => {
- const { height } = useRect(headers as any)
- heights.value = height
+ setTimeout(() => {
+ const { height } = useRect(headers as any)
+ console.log(height, 'height')
+ heights.value = height
+ }, 100)
})