We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 831ef28 commit a481ed1Copy full SHA for a481ed1
packages/vue-final-modal/src/useVfm.ts
@@ -34,10 +34,10 @@ export async function useSsrVfm(): Promise<Vfm> {
34
35
export async function pushVNode(vNode: VNode) {
36
const vfm = await useSsrVfm()
37
- vfm.h.push(vNode)
+ vfm.vNodesContainer.push(vNode)
38
}
39
40
export function removeVNode(vNode: VNode): void {
41
const vfm = useVfm()
42
- vfm.h.remove(vNode)
+ vfm.vNodesContainer.remove(vNode)
43
0 commit comments