jhbigscreen/src/pages/gzaiBox/index.vue

34 lines
487 B
Vue

<template>
<div>
AI- 广州
</div>
</template>
<script>
export default {
name: 'JhbigscreenAiGz',
data() {
return {
};
},
mounted() {
document.body.classList.add("no-header");
},
beforeDestroy(){
document.body.classList.remove("no-header");
},
methods: {
},
};
</script>
<style lang="less">
body.no-header{
.main-header{
display: none;
}
}
</style>