Semantic highlighting fails when scrolling below a certain position #4407
Open
Description
I have a weird comportement when i have a tag in the same file
Enregistrement.de.l.ecran.mp4
Repro :
<script setup lang="ts">
const bordered = defineProps({
tag: {
type: String,
default: 'div',
},
background: {
type: String,
},
})
</script>
<template>
<component
:is="bordered.tag"
>
<slot />
</component>
</template>