mirror of
https://github.com/vuejs/babel-plugin-jsx.git
synced 2025-01-25 15:49:09 +08:00
8 lines
226 B
JavaScript
8 lines
226 B
JavaScript
|
import { createApp } from 'vue';
|
||
|
|
||
|
export const createMountedApp = function (compoent) {
|
||
|
const dom = document.createElement('div');
|
||
|
const App = createApp(compoent).mount(dom);
|
||
|
return { App, dom, node: App.$.subTree };
|
||
|
};
|