mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 12:14:41 +01:00
Co-authored-by: Pooya Parsa <pooya@pi0.io> Co-authored-by: Florent Delerue <florentdelerue@hotmail.com> Co-authored-by: Sébastien Chopin <seb@nuxt.com>
25 lines
568 B
Vue
25 lines
568 B
Vue
<script setup>
|
|
const title = 'Playground'
|
|
const description = 'Play online with our interactive Nuxt Image playground.'
|
|
|
|
useSeoMeta({
|
|
title,
|
|
ogTitle: 'Nuxt UI Playground',
|
|
description
|
|
})
|
|
|
|
defineOgImage({
|
|
component: 'Docs',
|
|
title,
|
|
description
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div class="h-[calc(100vh-var(--header-height)-var(--header-height)-1px)]">
|
|
<ClientOnly>
|
|
<iframe :src="`https://stackblitz.com/edit/nuxt-ui?embed=1&file=app.config.ts,app.vue&theme=${$colorMode.preference}`" width="100%" height="100%" />
|
|
</ClientOnly>
|
|
</div>
|
|
</template>
|