70 lines
2.8 KiB
Vue
70 lines
2.8 KiB
Vue
<template>
|
|
<DocSectionText v-bind="$attrs">
|
|
<p>Dialog is used as a container and visibility is controlled with a binding to <i>visible</i> property.</p>
|
|
</DocSectionText>
|
|
<div class="card flex justify-center">
|
|
<Button label="Show" @click="visible = true" />
|
|
|
|
<Dialog v-model:visible="visible" modal header="Edit Profile" class="sm:w-100 w-9/10">
|
|
<span class="text-surface-500 dark:text-surface-400 block mb-8">Update your information.</span>
|
|
<div class="flex items-center gap-4 mb-4">
|
|
<label for="username" class="font-semibold w-24">Username</label>
|
|
<InputText id="username" class="flex-auto" autocomplete="off" />
|
|
</div>
|
|
<div class="flex items-center gap-4 mb-8">
|
|
<label for="email" class="font-semibold w-24">Email</label>
|
|
<InputText id="email" class="flex-auto" autocomplete="off" />
|
|
</div>
|
|
<div class="flex justify-end gap-2">
|
|
<SecondaryButton type="button" label="Cancel" @click="visible = false" />
|
|
<Button type="button" label="Save" @click="visible = false" />
|
|
</div>
|
|
</Dialog>
|
|
</div>
|
|
<DocSectionCode :code="code" />
|
|
</template>
|
|
|
|
<script setup>
|
|
import Button from '@/volt/button';
|
|
import SecondaryButton from '@/volt/button/secondary';
|
|
import Dialog from '@/volt/dialog';
|
|
import InputText from '@/volt/inputtext';
|
|
import { ref } from 'vue';
|
|
|
|
const visible = ref(false);
|
|
|
|
const code = ref(`
|
|
<template>
|
|
<div class="card flex justify-center">
|
|
<Button label="Show" @click="visible = true" />
|
|
|
|
<Dialog v-model:visible="visible" modal header="Edit Profile" class="sm:w-100 w-9/10">
|
|
<span class="text-surface-500 dark:text-surface-400 block mb-8">Update your information.</span>
|
|
<div class="flex items-center gap-4 mb-4">
|
|
<label for="username" class="font-semibold w-24">Username</label>
|
|
<InputText id="username" class="flex-auto" autocomplete="off" />
|
|
</div>
|
|
<div class="flex items-center gap-4 mb-8">
|
|
<label for="email" class="font-semibold w-24">Email</label>
|
|
<InputText id="email" class="flex-auto" autocomplete="off" />
|
|
</div>
|
|
<div class="flex justify-end gap-2">
|
|
<SecondaryButton type="button" label="Cancel" @click="visible = false" />
|
|
<Button type="button" label="Save" @click="visible = false" />
|
|
</div>
|
|
</Dialog>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import Button from '@/volt/button';
|
|
import SecondaryButton from '@/volt/button/secondary';
|
|
import Dialog from '@/volt/dialog';
|
|
import InputText from '@/volt/inputtext';
|
|
import { ref } from 'vue';
|
|
|
|
const visible = ref(false);
|
|
<\/script>
|
|
`);
|
|
</script>
|