Closed privatenumber closed 2 months ago
Fixes an edge-case where the slot is dynamic derived from a v-for.
v-for
Previously, it would move the slot directive in a new <template> above the v-for, which broke it.
slot
<template>
Now, it also moves the v-for to the new <template>.
Fixes an edge-case where the slot is dynamic derived from a
v-for
.Previously, it would move the
slot
directive in a new<template>
above thev-for
, which broke it.Now, it also moves the
v-for
to the new<template>
.