mirror of
https://github.com/FranP-code/create-better-t-stack.git
synced 2025-10-12 23:52:15 +00:00
18 lines
340 B
Handlebars
18 lines
340 B
Handlebars
<script setup lang="ts">
|
|
{{#if (eq api "orpc")}}
|
|
import { VueQueryDevtools } from '@tanstack/vue-query-devtools'
|
|
{{/if}}
|
|
</script>
|
|
|
|
<template>
|
|
<NuxtLoadingIndicator />
|
|
<UApp>
|
|
<NuxtLayout>
|
|
<NuxtPage />
|
|
</NuxtLayout>
|
|
</UApp>
|
|
{{#if (eq api "orpc")}}
|
|
<VueQueryDevtools />
|
|
{{/if}}
|
|
</template>
|