沈阳K11 横板
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

20 lines
368 B

<template>
<router-view />
<PublicComponent />
</template>
<script setup lang="ts">
import PublicComponent from '@/components/PublicComponent/PublicComponent.vue'
</script>
<style>
html,
body,
#app {
width: 1920px;
height: 1080px;
}
#app {
background: url('./assets/images/body_bg.jpg') no-repeat center center;
background-size: 1920px 1080px;
}
</style>