Add playground

pull/4666/head
Cagatay Civici 2023-10-20 22:38:32 +03:00
parent d19c26da7d
commit a8ab859c78
2 changed files with 25 additions and 0 deletions

View File

@ -16,6 +16,11 @@
"name": "Nuxt", "name": "Nuxt",
"to": "/nuxt", "to": "/nuxt",
"badge": "NEW" "badge": "NEW"
},
{
"name": "Playground",
"to": "/playground",
"badge": "NEW"
} }
] ]
}, },

View File

@ -0,0 +1,20 @@
<template>
<div>
<Head>
<Title>Playground - PrimeVue</Title>
<Meta name="description" content="PrimeVue playground." />
</Head>
<div class="doc">
<div class="doc-main">
<div class="doc-intro">
<h1>Playground</h1>
<p>Experience PrimeVue right now with the interative environment.</p>
</div>
<section class="py-4">
<iframe class="w-full h-full" style="border: 1px solid rgba(0, 0, 0, 0.1); border-radius: 2px; min-height: 800px" allowfullscreen src="https://stackblitz.com/edit/vitejs-vite-bpqpcf?file=src%2FApp.vue&embed=1"></iframe>
</section>
</div>
</div>
</div>
</template>