We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63b2e39 commit 69e54d1Copy full SHA for 69e54d1
app/pages/index.vue
@@ -33,8 +33,6 @@ let collectionLinks = [
33
34
let collections = await useCollections({ collectionLinks })
35
36
-console.log(collections.value, collectionLinks)
37
-
38
let polygons = ref([])
39
let selectedCollections = ref<string[]>([])
40
@@ -102,6 +100,8 @@ let { data: countries } = await useFetch(
102
100
url.protocol + '//' + url.host + '/countries.json',
103
101
)
104
+console.log(countries, url.protocol + '//' + url.host + '/countries.json')
+
105
// Find countries that intersect with drawn polygons
106
let intersectingCountries = computed(() => {
107
if (!polygons.value?.length) return []
0 commit comments