23 lines
431 B
Vue
23 lines
431 B
Vue
<template>
|
|
<Teleport to="#topBar .left" defer>
|
|
<lolStatusDiv></lolStatusDiv>
|
|
</Teleport>
|
|
<Teleport to="#lolOpener.uiStyle" defer>
|
|
<lolStatusDiv></lolStatusDiv>
|
|
</Teleport>
|
|
<eventDiv></eventDiv>
|
|
<eventPannel class="zFocus"></eventPannel>
|
|
</template>
|
|
|
|
<style scoped>
|
|
</style>
|
|
|
|
<script>
|
|
export default {
|
|
name : 'App',
|
|
mounted(){
|
|
console.log("Vue root app is fully loaded!");
|
|
}
|
|
};
|
|
</script>
|