lg_frontend/components/PointDialog.vue

34 lines
432 B
Vue
Raw Permalink Normal View History

2024-02-28 15:59:31 +00:00
<template>
2024-03-08 15:41:54 +00:00
<div class="point-dialog" :class="[type]">
2024-02-28 15:59:31 +00:00
</div>
</template>
<script>
export default {
2024-03-08 15:41:54 +00:00
name: "PointDialog",
props: {
/**
* 地图类型
* @param { 'big' | 'small' } type
*/
type: {
type: String,
default: 'big'
},
}
2024-02-28 15:59:31 +00:00
}
</script>
<style scoped lang="less">
.point-dialog{
height: 2000px;
width: 100%;
background: black;
2024-03-08 15:41:54 +00:00
&.middle {
height: 1200px;
}
2024-02-28 15:59:31 +00:00
}
</style>