mirror of
https://github.com/FranP-code/create-better-t-stack.git
synced 2025-10-12 23:52:15 +00:00
feat(cli): add nuxt + convex support (#458)
This commit is contained in:
17
apps/cli/templates/frontend/nuxt/app/app.vue.hbs
Normal file
17
apps/cli/templates/frontend/nuxt/app/app.vue.hbs
Normal file
@@ -0,0 +1,17 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user