docs(slideover): update

This commit is contained in:
Benjamin Canac
2024-08-23 15:58:08 +02:00
parent 1d1d88d6ee
commit 6ac63b5034
11 changed files with 435 additions and 30 deletions

View File

@@ -1,20 +1,20 @@
<script setup lang="ts">
import { LazyExampleModalComponent } from '#components'
import { LazyModalExample } from '#components'
const count = ref(0)
const modal = useModal()
function openModal() {
function open() {
count.value++
modal.open(LazyExampleModalComponent, {
description: 'And you can even provide a description !',
modal.open(LazyModalExample, {
description: 'And you can even provide a description!',
count: count.value
})
}
</script>
<template>
<UButton label="Open" color="gray" variant="subtle" @click="openModal" />
<UButton label="Open" color="gray" variant="subtle" @click="open" />
</template>