chore(Provider): rename to App

This commit is contained in:
Benjamin Canac
2024-04-02 19:01:07 +02:00
parent 47e32a13ca
commit 659c58b49f
4 changed files with 6 additions and 6 deletions

View File

@@ -40,7 +40,7 @@ function upperName (name: string) {
</script>
<template>
<UProvider>
<UApp>
<div class="min-h-screen w-screen flex flex-col items-center justify-center overflow-y-auto">
<UNavigationMenu :links="components.map(component => ({ label: upperName(component), to: `/${component}` }))" class="border-b border-gray-200 dark:border-gray-800 overflow-x-auto px-2" />
@@ -48,5 +48,5 @@ function upperName (name: string) {
<NuxtPage />
</div>
</div>
</UProvider>
</UApp>
</template>