67 lines
1.4 KiB
JavaScript
67 lines
1.4 KiB
JavaScript
import './public-path';
|
|
import ElementUI from 'element-ui';
|
|
import 'element-ui/lib/theme-chalk/index.css';
|
|
import Vue from 'vue';
|
|
import VueRouter from 'vue-router';
|
|
import App from './App.vue';
|
|
import routes from './router';
|
|
import store from './store';
|
|
|
|
Vue.config.productionTip = false;
|
|
|
|
Vue.use(ElementUI);
|
|
|
|
let router = null;
|
|
let instance = null;
|
|
|
|
function render(props = {}) {
|
|
const { container } = props;
|
|
router = new VueRouter({
|
|
base: window.__POWERED_BY_QIANKUN__ ? '/vue' : '/',
|
|
mode: 'history',
|
|
routes,
|
|
});
|
|
|
|
instance = new Vue({
|
|
router,
|
|
store,
|
|
render: h => h(App),
|
|
}).$mount(container ? container.querySelector('#app') : '#app');
|
|
}
|
|
|
|
if (!window.__POWERED_BY_QIANKUN__) {
|
|
render();
|
|
}
|
|
|
|
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 bootstrap() {
|
|
console.log('[vue] vue app bootstraped');
|
|
}
|
|
|
|
export async function mount(props) {
|
|
console.log('[vue] props from main framework', props);
|
|
storeTest(props);
|
|
render(props);
|
|
}
|
|
|
|
export async function unmount() {
|
|
instance.$destroy();
|
|
instance.$el.innerHTML = '';
|
|
instance = null;
|
|
router = null;
|
|
}
|