mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 12:14:41 +01:00
21 lines
413 B
Vue
21 lines
413 B
Vue
<script setup lang="ts">
|
|
import { LazyExampleModalComponent } from '#components'
|
|
|
|
const count = ref(0)
|
|
|
|
const modal = useModal()
|
|
|
|
function openModal() {
|
|
count.value++
|
|
|
|
modal.open(LazyExampleModalComponent, {
|
|
description: 'And you can even provide a description !',
|
|
count: count.value
|
|
})
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<UButton label="Open" color="gray" variant="subtle" @click="openModal" />
|
|
</template>
|