16 lines
373 B
Vue
16 lines
373 B
Vue
<script setup lang="ts">
|
|
import { ref } from 'vue';
|
|
|
|
const _open = ref(false);
|
|
</script>
|
|
|
|
|
|
<template>
|
|
<div class="space-y-2">
|
|
<Button type="button" label="Open Dialog" @click="_open = true" @keyup.enter="_open = true" />
|
|
<Dialog v-model:visible="_open" modal header="Hello" :draggable="false">
|
|
<p>PrimeVue is working.</p>
|
|
</Dialog>
|
|
</div>
|
|
</template>
|