64 lines
1.5 KiB
JavaScript
64 lines
1.5 KiB
JavaScript
import './public-path';
|
|
import { createApp } from 'vue';
|
|
import { createRouter, createWebHistory } from 'vue-router';
|
|
import App from './App.vue';
|
|
import routes from './router';
|
|
import store from './store';
|
|
|
|
let router = null;
|
|
let instance = null;
|
|
let history = null;
|
|
|
|
|
|
function render(props = {}) {
|
|
const { container } = props;
|
|
history = createWebHistory(window.__POWERED_BY_QIANKUN__ ? '/vue3' : '/');
|
|
router = createRouter({
|
|
history,
|
|
routes,
|
|
});
|
|
|
|
instance = createApp(App);
|
|
instance.use(router);
|
|
instance.use(store);
|
|
instance.mount(container ? container.querySelector('#app') : '#app');
|
|
}
|
|
|
|
if (!window.__POWERED_BY_QIANKUN__) {
|
|
render();
|
|
}
|
|
|
|
export async function bootstrap() {
|
|
console.log('%c ', 'color: green;', 'vue3.0 app bootstraped');
|
|
}
|
|
|
|
function storeTest(props) {
|
|
props.onGlobalStateChange &&
|
|
props.onGlobalStateChange(
|
|
(value, prev) => console.log(`[onGlobalStateChange - ${props.name}]:`, value, prev),
|
|
true,
|
|
);
|
|
props.setGlobalState &&
|
|
props.setGlobalState({
|
|
ignore: props.name,
|
|
user: {
|
|
name: props.name,
|
|
},
|
|
});
|
|
}
|
|
|
|
export async function mount(props) {
|
|
storeTest(props);
|
|
render(props);
|
|
instance.config.globalProperties.$onGlobalStateChange = props.onGlobalStateChange;
|
|
instance.config.globalProperties.$setGlobalState = props.setGlobalState;
|
|
}
|
|
|
|
export async function unmount() {
|
|
instance.unmount();
|
|
instance._container.innerHTML = '';
|
|
instance = null;
|
|
router = null;
|
|
history.destroy();
|
|
}
|