diff --git a/src/components/Map/Map.vue b/src/components/Map/Map.vue index e26cb5b..bb7df79 100644 --- a/src/components/Map/Map.vue +++ b/src/components/Map/Map.vue @@ -4,12 +4,8 @@
-
-
{{ switchLanguage(shop, 'shopName') }}
-
-
{{ $t('detail') }}
-
{{ $t('nav') }}
-
+
+
{{ switchLanguage(shop, 'shopName') }}
@@ -24,17 +20,6 @@ import { useStore } from '@/store/root' const store = useStore() const { shop } = storeToRefs(store) - -const emits = defineEmits(['handle-GO', 'handle-Detail']) - -function handleGO() { - emits('handle-GO') -} - -// 点击地图弹框详情 -function handleDetail() { - emits('handle-Detail') -}