<template>
|
<div class="screen-container">
|
<!-- <screen-title></screen-title> -->
|
<v-scale-screen width="1920" height="1080" :autoScale="true" :delay="0" class="screen">
|
<!-- <screen-wrapper></screen-wrapper> -->
|
<NewPage></NewPage>
|
</v-scale-screen>
|
</div>
|
|
</template>
|
|
<script>
|
import ScreenTitle from './components/screen-title/index.vue';
|
import ScreenWrapper from './components/screen-wrapper/index.vue';
|
import NewPage from './newPage/index.vue'
|
|
export default {
|
name: 'App',
|
components: {
|
ScreenTitle,
|
ScreenWrapper,
|
NewPage,
|
},
|
data() {
|
return {
|
}
|
},
|
mounted() {
|
|
}
|
}
|
</script>
|
|
<style lang="scss" scoped>
|
.screen-container {
|
user-select: none;
|
-webkit-user-select: none;
|
}
|
.screen {
|
background-color: #033c76 !important;
|
//background: url('../../assets/images/screen/pageBg1.jpg') !important;
|
//background-size: cover !important;
|
//background-repeat: no-repeat !important;
|
//background-position: center center !important;
|
}
|
|
</style>
|