For my project with nuxt3
, I am exploring the use of jsx
to create a dynamic virtual dom. I found guidance in implementing this approach from this specific example provided in the official documentation.
<script lang='tsx' setup>
...
</script>
However, by including lang='tsx'
, it also activates typescript linting
, which has been inconvenient for me as I prefer sticking to JavaScript only.