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.
29 lines
382 B
29 lines
382 B
<template> |
|
<router-view /> |
|
</template> |
|
|
|
<script lang="ts" setup> |
|
import watermark from '@/utils/watermark.js'; |
|
watermark.set('货无忧'); |
|
</script> |
|
|
|
<style lang="scss"> |
|
html, |
|
body, |
|
#app { |
|
width: 100%; |
|
height: 100%; |
|
} |
|
|
|
.BMap_cpyCtrl, |
|
.anchorBL { |
|
display: none !important; |
|
} |
|
.amap-logo { |
|
display: none; |
|
opacity: 0 !important; |
|
} |
|
.amap-copyright { |
|
opacity: 0; |
|
} |
|
</style>
|
|
|