jhbigscreen/src/App.vue

21 lines
397 B
Vue
Raw Normal View History

2023-08-28 00:01:37 +08:00
<template>
2023-10-03 21:31:40 +08:00
<div id="app">
<!--大屏背景-->
<background-video></background-video>
<!--大屏内容-->
<div class="screen-content-max">
<screen-header :nav="1"></screen-header>
<div>
<router-view />
</div>
2023-08-28 00:01:37 +08:00
</div>
2023-10-03 21:31:40 +08:00
</div>
</template>
<script>
import './components/background_video'
export default {
mounted(){
window.app=this;
}
}
</script>