移风店大屏前端
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.

41 lines
754 B

<!--
* @Author: mk 2403457699@qq.com
* @Date: 2024-01-15 10:07:45
* @LastEditors: mk 2403457699@qq.com
* @LastEditTime: 2024-02-27 15:10:40
* @Description: 介绍一下改动了什么
*
*
-->
2 years ago
<template>
2 years ago
<div style="width: 100%; height: 100%;">
<div class='bg_img'>
</div>
</div>
2 years ago
</template>
<script>
export default {
data() {
return {};
},
2 years ago
created() { },
2 years ago
methods: {},
2 years ago
components: {},
computed: {},
2 years ago
watch: {},
}
</script>
<style lang="scss" scoped>
2 years ago
.bg_img {
background: url('~@/assets/images/map/hsyf.jpg');
2 years ago
background-size: 100% 100%;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
}
2 years ago
</style>