fix: 🐛 change vue vm instance (#1751)

This commit is contained in:
vector
2022-01-12 21:45:18 +08:00
committed by GitHub
parent 56e391b534
commit bcf148584e

View File

@ -65,7 +65,8 @@ export class VueShapeView extends NodeView<VueShape> {
getNode: () => node,
}
},
}).mount(root)
})
this.vm.mount(root)
}
}
}