chore: externalize theme to type app config

This commit is contained in:
Benjamin Canac
2024-03-06 12:26:52 +01:00
parent f76ec5a376
commit 17ea7efd3b
11 changed files with 188 additions and 84 deletions

View File

@@ -1,7 +1,8 @@
<template>
<div class="max-w-7xl mx-auto py-24">
<UButton color="green" truncate icon="i-heroicons-rocket-launch">
Click
</UButton>
<UButton color="green" icon="i-heroicons-rocket-launch" to="/" label="/" />
<UButton color="red" icon="i-heroicons-rocket-launch" to="/about" label="/about" square />
<NuxtPage />
</div>
</template>

View File

@@ -0,0 +1,6 @@
<template>
<div>{{ $route.path }}</div>
</template>
<script setup lang="ts">
</script>