HumanBreak/src/App2.vue

25 lines
640 B
Vue
Raw Normal View History

2022-12-28 20:34:23 +08:00
<template>
<div id="non-ui">
<StatusBar v-if="showStatusBar"></StatusBar>
2022-12-29 00:26:12 +08:00
<MarkedEnemy></MarkedEnemy>
2022-12-29 19:57:31 +08:00
<Chapter v-if="chapterShowed" :chapter="chapterContent"></Chapter>
2022-12-28 20:34:23 +08:00
</div>
</template>
<script lang="ts" setup>
import { ref } from 'vue';
import StatusBar from './ui/statusBar.vue';
import { showStatusBar } from './plugin/uiController';
2022-12-29 00:26:12 +08:00
import MarkedEnemy from './ui/markedEnemy.vue';
2022-12-29 19:57:31 +08:00
import Chapter from './ui/chapter.vue';
import { chapterContent, chapterShowed } from './plugin/ui/chapter';
2022-12-28 20:34:23 +08:00
</script>
<style lang="less" scoped>
#non-ui {
width: 0;
height: 0;
overflow: visible;
}
</style>