chore(projects): correct the word spell

This commit is contained in:
Soybean
2023-07-19 23:44:18 +08:00
parent 56c770c49d
commit 458e387b68
12 changed files with 45 additions and 30 deletions

View File

@@ -5,11 +5,11 @@
<script setup lang="ts">
import { onMounted, ref } from 'vue';
import { useScriptTag } from '@vueuse/core';
import { GAODE_MAP_SDK_URL } from '@/config';
import { AMAP_SDK_URL } from '@/config';
defineOptions({ name: 'GaodeMap' });
const { load } = useScriptTag(GAODE_MAP_SDK_URL);
const { load } = useScriptTag(AMAP_SDK_URL);
const domRef = ref<HTMLDivElement>();