Files
ui/docs/app/components/Banner.vue
Benjamin Canac 06e041c374 docs: update
2024-06-18 11:01:00 +02:00

12 lines
479 B
Vue

<script setup lang="ts">
const config = useRuntimeConfig().public
</script>
<template>
<UBanner icon="i-heroicons-light-bulb" :actions="[{ label: 'Go to Nuxt UI v2', to: 'https://ui.nuxt.com', trailingIcon: 'i-heroicons-arrow-right-20-solid', color: 'white', class: 'rounded-full' }]" :close="false">
<template #title>
You're looking at the documentation for <span class="font-semibold">Nuxt UI v{{ config.version }}</span>!
</template>
</UBanner>
</template>