24 lines
318 B
Vue
24 lines
318 B
Vue
![]() |
<template>
|
||
|
<div id="app">
|
||
|
<router-view/>
|
||
|
</div>
|
||
|
</template>
|
||
|
<script>
|
||
|
import enquireScreen from '@/utils/device'
|
||
|
|
||
|
export default {
|
||
|
data () {
|
||
|
return {
|
||
|
//locale: zhCN,
|
||
|
}
|
||
|
},
|
||
|
created () {
|
||
|
//let that = this
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
<style>
|
||
|
#app {
|
||
|
height: 100%;
|
||
|
}
|
||
|
</style>
|