Skip to content

Commit

Permalink
Make Typescript happy
Browse files Browse the repository at this point in the history
  • Loading branch information
sistrall committed Nov 24, 2022
1 parent 96f9132 commit b9db196
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/site-search/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ const { state, error, data } = useSiteSearch({
<input class="py-3 px-5 block w-full border-gray-200 rounded-full text-sm focus:border-blue-500 focus:ring-blue-500 dark:bg-gray-800 dark:border-gray-700 dark:text-gray-400" type="text" v-model="state.query" placeholder="Search: try something like &quot;vue&quot; or &quot;dato&quot;... " />
</div>
</div>
<div class="bg-slate-100 py-4">
<div v-if="data" class="bg-slate-100 py-4">
<div class="container mx-auto py-4">
<h1>{{ data.totalResults}} results</h1>
</div>
<div class="container mx-auto py-4 grid grid-cols-3 gap-4" v-if="data">
<div class="container mx-auto py-4 grid grid-cols-3 gap-4">
<div v-for="result in data.pageResults" class="py-4">
<div class="py-1">
<a :href="result.url">
Expand Down

4 comments on commit b9db196

@vercel
Copy link

@vercel vercel bot commented on b9db196 Nov 24, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

vue-datocms-query-subscription-example – ./examples/query-subscription

vue-datocms-query-subscription-example-git-master-datocms.vercel.app
vue-datocms-query-subscription-example.vercel.app
vue-datocms-query-subscription-example-datocms.vercel.app

@vercel
Copy link

@vercel vercel bot commented on b9db196 Nov 24, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

vue-datocms-vite-typescript-vue3-example – ./examples/vite-typescript-vue3

vue-datocms-vite-typescript-vue3-example-datocms.vercel.app
vue-datocms-vite-typescript-vue3-example-git-master-datocms.vercel.app
vue-datocms-vite-typescript-vue3-example.vercel.app

@vercel
Copy link

@vercel vercel bot commented on b9db196 Nov 24, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

vue-datocms-vue-cli-babel-javascript-vue2-example – ./examples/vue-cli-babel-javascript-vue2

vue-datocms-vue-cli-babel-javascript-vue2-ex-git-00872c-datocms.vercel.app
vue-datocms-vue-cli-babel-javascript-vue2-example-datocms.vercel.app
vue-datocms-vue-cli-babel-javascript-vue2-example.vercel.app

@vercel
Copy link

@vercel vercel bot commented on b9db196 Nov 24, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

vue-datocms-site-search-example – ./examples/site-search

vue-datocms-site-search-example.vercel.app
vue-datocms-site-search-example-datocms.vercel.app
vue-datocms-site-search-example-git-master-datocms.vercel.app

Please sign in to comment.