Skip to content

Commit

Permalink
fix(runtime-core): named ref in v-for fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lidlanca authored Feb 18, 2022
1 parent 368b89e commit 6305830
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ describe('api: template refs', () => {


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

0 comments on commit 6305830

Please sign in to comment.