校园-江西科技师范大学-前端
shuishen
2023-12-14 e733164e1c779b3aef7245936b9daf7875bf791e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!--
 * @Author: shuishen 1109946754@qq.com
 * @Date: 2023-11-22 10:26:22
 * @LastEditors: shuishen 1109946754@qq.com
 * @LastEditTime: 2023-11-22 20:46:33
 * @FilePath: \sd-jg-school-web-ksd\src\components\map\components\mapPopupOther\leftNavsAdd.vue
 * @Description: 
 * 
 * Copyright (c) 2023 by shuishen, All Rights Reserved. 
-->
<template>
    <div style="width: 100%; height: 100%">
        <div class="monitor-container">
            <div class="monitor-wrap">
                <div class="content-wrap">
                    <div class="title">
                        <!-- {{ stateName }} -->
                        <!-- @click="closeMonitorPopupBox" -->
                        <img class="close-box" :src="publicPath + 'img/navicon/close.png'" alt />
                    </div>
                    <div class="content">123</div>
                </div>
            </div>
            <div class="arrow"></div>
        </div>
    </div>
</template>
 
<script>
export default {
    name: 'leftNavsAdd',
    publicPath: process.env.BASE_URL,
}
</script>
 
<style></style>