mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-10-10 08:23:57 +00:00
refactor configurator for web page cache issue Tracked-On: #7356 Signed-off-by: Weiyi Feng <weiyix.feng@intel.com>
25 lines
542 B
Vue
25 lines
542 B
Vue
<script setup>
|
|
// This starter template is using Vue 3 <script setup> SFCs
|
|
// Check out https://vuejs.org/api/sfc-script-setup.html#script-setup
|
|
import ControlBar from "./components/common/ControlBar.vue";
|
|
import Footer from "./components/common/Footer.vue";
|
|
</script>
|
|
|
|
<template>
|
|
<ControlBar>
|
|
<div class="acrnBody">
|
|
<router-view></router-view>
|
|
<Footer/>
|
|
</div>
|
|
</ControlBar>
|
|
</template>
|
|
|
|
<style lang="scss">
|
|
@import "./assets/css/index.scss";
|
|
|
|
.acrnBody {
|
|
height: calc(100vh - 84px);
|
|
overflow-y: auto;
|
|
}
|
|
</style>
|