@@ -765,7 +765,7 @@ describe('interop: template ref', () => {
765
765
const { container } = await testTemplateRefInterop (
766
766
`<script setup>
767
767
import { useTemplateRef } from 'vue'
768
- const data = _data; const components = _components;
768
+ const components = _components;
769
769
const elRef = useTemplateRef('el')
770
770
function click() {
771
771
elRef.value.change()
@@ -809,7 +809,7 @@ describe('interop: template ref', () => {
809
809
const { container } = await testTemplateRefInterop (
810
810
`<script setup>
811
811
import { ref } from 'vue'
812
- const data = _data; const components = _components;
812
+ const components = _components;
813
813
const elRef = ref(null)
814
814
function click() {
815
815
elRef.value.change()
@@ -853,7 +853,7 @@ describe('interop: template ref', () => {
853
853
const { container } = await testTemplateRefInterop (
854
854
`<script vapor>
855
855
import { useTemplateRef } from 'vue'
856
- const data = _data; const components = _components;
856
+ const components = _components;
857
857
const elRef = useTemplateRef('el')
858
858
function click() {
859
859
elRef.value.change()
@@ -899,7 +899,7 @@ describe('interop: template ref', () => {
899
899
const { container } = await testTemplateRefInterop (
900
900
`<script vapor>
901
901
import { ref } from 'vue'
902
- const data = _data; const components = _components;
902
+ const components = _components;
903
903
const elRef = ref(null)
904
904
function click() {
905
905
elRef.value.change()
0 commit comments