Using `{{ }}` in a template with a textarea using `v-bind="$attrs"` results in a SSR error
Version
3.0.5
Reproduction link
Steps to reproduce
Using the following code in the online template compiler (set to SSR) will result in a duplicate import of ssrInterpolate
:
<div>
{{ hello }}
<textarea v-bind="a"></textarea>
</div>
What is expected?
The import to only happen once
What is actually happening?
Imported twice, crashing certain rollup builds (like VitePress)