Skip to content

Commit 6305830

Browse files
authored
fix(runtime-core): named ref in v-for fix
1 parent 368b89e commit 6305830

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/runtime-core/__tests__/rendererTemplateRef.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,7 @@ describe('api: template refs', () => {
446446

447447

448448
test('named ref in v-for', async () => {
449-
const show = ref(true)
449+
const show = ref(true);
450450
const list = reactive([1, 2, 3])
451451
const listRefs = ref([])
452452
const mapRefs = () => listRefs.value.map(n => serializeInner(n))

0 commit comments

Comments
 (0)