mirror of
https://github.com/vuejs/babel-plugin-jsx.git
synced 2025-01-10 16:29:12 +08:00
8f18b5630a
add spread test case
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 };
|
|
};
|