29 lines
338 B
Vue
29 lines
338 B
Vue
<template>
|
|
<div id="app">
|
|
<router-view />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "app",
|
|
data () {
|
|
return {};
|
|
},
|
|
watch: {},
|
|
created () {
|
|
|
|
},
|
|
methods: {},
|
|
computed: {}
|
|
};
|
|
</script>
|
|
<style lang="scss">
|
|
#app {
|
|
width: 100%;
|
|
height: 100%;
|
|
/*overflow: hidden;*/
|
|
/*min-width: 1200px;*/
|
|
}
|
|
</style>
|