YZProjectCloud/yanzhu-bigscreen/src/App.vue

30 lines
597 B
Vue

<template>
<div id="app">
<!--大屏背景-->
<background-video></background-video>
<!--大屏内容-->
<div class="screen-content-max">
<screen-header :nav="1" v-if="!isMap"></screen-header>
<div class="main-app">
<router-view />
</div>
</div>
</div>
</template>
<script>
import backgroundVideo from './components/backgroundVideo.vue'
export default {
components:{
backgroundVideo,
},
data(){
return {
isMap:false
}
},
mounted(){
window.app=this;
this.isMap=location.hash.indexOf("#/map")>=0;
}
}
</script>