DemuMesDataV/src/App.vue

31 lines
432 B
Vue
Raw Normal View History

2018-12-04 11:43:18 +08:00
<template>
2018-12-13 18:48:54 +08:00
<div id="app" ref="data-root">
<router-view />
2018-12-04 11:43:18 +08:00
</div>
</template>
<script>
export default {
2018-12-13 18:48:54 +08:00
name: 'app'
2018-12-04 11:43:18 +08:00
}
</script>
<style lang="less">
#app {
2018-12-13 18:48:54 +08:00
font-family:
'-apple-system',
'BlinkMacSystemFont',
'Helvetica Neue',
'PingFang SC',
'Microsoft YaHei',
'Source Han Sans SC',
'Noto Sans CJK SC',
'WenQuanYi Micro Hei',
'sans-serif';
width: 100%;
height: 100%;
overflow: hidden;
2018-12-04 11:43:18 +08:00
}
</style>