mirror of
https://github.com/gl-inet/glkvm-cloud.git
synced 2026-09-21 18:13:23 +00:00
fff504193a
Signed-off-by: Jianhui Zhao <jianhuizhao329@gmail.com>
21 lines
248 B
Vue
21 lines
248 B
Vue
<template>
|
|
<div id="app">
|
|
<router-view></router-view>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
name: 'app'
|
|
};
|
|
</script>
|
|
|
|
<style>
|
|
html, body, #app {
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: #555;
|
|
}
|
|
</style>
|