-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.vue
56 lines (47 loc) · 1.51 KB
/
app.vue
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<template>
<section>
<div style="display: flex; align-items: center">
<input type="text" v-model.trim="code" placeholder="search code">
<div v-if="fetching">fetching...</div>
</div>
<div v-if="data">
<table v-if="data.countries.length">
<thead>
<tr>
<th style="width: 2em; white-space: nowrap">Flag</th>
<th>Name</th>
</tr>
</thead>
<tbody>
<tr v-for="c in data.countries" :key="c.code">
<td>{{ c.emoji }}</td>
<td>{{ c.name }}</td>
</tr>
</tbody>
</table>
<div v-else><em>no results</em></div>
</div>
</section>
</template>
<script setup lang="ts">
import { ref, computed } from "vue";
import { AllCountriesDocument, useAllCountriesQuery, AllCountriesQueryVariables } from "~/graphql/generated/graphql";
import { useClientHandle } from "@urql/vue";
const code = ref("");
const variables = computed<AllCountriesQueryVariables>(() => {
return code.value ? {filter: {code: {eq: code.value.toUpperCase()}}} : {}
})
const { data, fetching } = useAllCountriesQuery({ variables });
// const urql = useClientHandle();
//const { data, fetching } = urql.useQuery({query: AllCountriesDocument, variables})
/*
import {useNuxtApp} from "#app";
const app = useNuxtApp()
const { data } = await app.$urql.query(AllCountriesDocument).toPromise()
*/
/*
const data = await useAsyncData('countriesg', ctx => {
return ctx.$urql.query(AllCountriesDocument).toPromise()
})
*/
</script>