32 lines
336 B
Vue
32 lines
336 B
Vue
<template>
|
|
<div id="app">
|
|
<router-view></router-view>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "App",
|
|
data() {
|
|
return {};
|
|
},
|
|
created() {
|
|
},
|
|
methods: {},
|
|
components: {},
|
|
};
|
|
</script>
|
|
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
#app {
|
|
width: 100%;
|
|
height: 100vh;
|
|
background:url("../")
|
|
}
|
|
</style>
|