index.vue
337 Bytes
<template>
<div class="app_container">
<app-router></app-router>
</div>
</template>
<script>
import appRouter from './appRouter'
export default {
components: {
appRouter
}
}
</script>
<style scoped>
.app_container {
width: 100%;
height: 100%;
background: #03050c;
background-size: 100% 100%;
overflow: hidden;
}
</style>