38 lines
604 B
Vue
38 lines
604 B
Vue
<template>
|
|
<div class="mobile-empty">
|
|
<div class="box"><img :src="require('@/assets/image/notMobile.png')" alt=''></div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'MobileApp.vue'
|
|
}
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
.mobile-empty {
|
|
position: relative;
|
|
height: 100vh;
|
|
overflow: hidden;
|
|
|
|
.box {
|
|
position: absolute;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
height: 500px;
|
|
width: 100%;
|
|
overflow: hidden;
|
|
|
|
img {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
|
|
width: 100%;
|
|
}
|
|
}
|
|
}
|
|
</style>
|