8000 chore: tweaks · vuejs/core@431b426 · GitHub
[go: up one dir, main page]

Skip to content

Commit 431b426

Browse files
committed
chore: tweaks
1 parent 2be0d08 commit 431b426

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/runtime-vapor/__tests__/dom/templateRef.spec.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -765,7 +765,7 @@ describe('interop: template ref', () => {
765765
const { container } = await testTemplateRefInterop(
766766
`<script setup>
767767
import { useTemplateRef } from 'vue'
768-
const data = _data; const components = _components;
768+
const components = _components;
769769
const elRef = useTemplateRef('el')
770770
function click() {
771771
elRef.value.change()
@@ -809,7 +809,7 @@ describe('interop: template ref', () => {
809809
const { container } = await testTemplateRefInterop(
810810
`<script setup>
811811
import { ref } from 'vue'
812-
const data = _data; const components = _components;
812+
const components = _components;
813813
const elRef = ref(null)
814814
function click() {
815815
elRef.value.change()
@@ -853,7 +853,7 @@ describe('interop: template ref', () => {
853853
const { container } = await testTemplateRefInterop(
854854
`<script vapor>
855855
import { useTemplateRef } from 'vue'
856-
const data = _data; const components = _components;
856+
const components = _components;
857857
const elRef = useTemplateRef('el')
858858
function click() {
859859
elRef.value.change()
@@ -899,7 +899,7 @@ describe('interop: template ref', () => {
899899
const { container } = await testTemplateRefInterop(
900900
`<script vapor>
901901
import { ref } from 'vue'
902-
const data = _data; const components = _components;
902+
const components = _components;
903903
const elRef = ref(null)
904904
function click() {
905905
elRef.value.change()

0 commit comments

Comments
 (0)
0