21 lines
314 B
Vue
21 lines
314 B
Vue
<template>
|
|
<div id="sub-app"></div>
|
|
</template>
|
|
|
|
<script>
|
|
import { registerGlobalMicroApps } from '@/micro';
|
|
export default {
|
|
mounted() {
|
|
if (!window.qiankunStarted) {
|
|
window.qiankunStarted = true;
|
|
registerGlobalMicroApps();
|
|
}
|
|
},
|
|
};
|
|
</script>
|
|
<style>
|
|
#sub-app {
|
|
width: 100%;
|
|
}
|
|
</style>
|