lg_frontend/components/PointDialog.vue

20 lines
227 B
Vue
Raw Normal View History

2024-02-28 15:59:31 +00:00
<template>
<div class="point-dialog">
</div>
</template>
<script>
export default {
name: "PointDialog"
}
</script>
<style scoped lang="less">
.point-dialog{
height: 2000px;
width: 100%;
background: black;
}
</style>