primevue-mirror/doc/dialog/BasicDoc.vue

117 lines
4.7 KiB
Vue
Raw Normal View History

2023-02-28 08:29:30 +00:00
<template>
<DocSectionText v-bind="$attrs">
2023-10-29 19:34:22 +00:00
<p>Dialog is used as a container and visibility is controlled with a binding to <i>visible</i> property.</p>
2023-02-28 08:29:30 +00:00
</DocSectionText>
<div class="card flex justify-content-center">
2024-01-23 22:25:44 +00:00
<Button label="Show" @click="visible = true" />
2023-02-28 08:29:30 +00:00
2024-01-19 21:49:35 +00:00
<Dialog v-model:visible="visible" modal header="Edit Profile" :style="{ width: '25rem' }">
<span class="p-text-secondary block mb-5">Update your information.</span>
<div class="flex align-items-center gap-3 mb-3">
<label for="username" class="font-semibold w-6rem">Username</label>
2024-01-19 22:29:06 +00:00
<InputText id="username" class="flex-auto" autocomplete="off" />
2024-01-19 21:49:35 +00:00
</div>
<div class="flex align-items-center gap-3 mb-5">
<label for="email" class="font-semibold w-6rem">Email</label>
2024-01-19 22:29:06 +00:00
<InputText id="Email" class="flex-auto" autocomplete="off" />
2024-01-19 21:49:35 +00:00
</div>
<div class="flex justify-content-end gap-2">
2024-01-19 21:57:03 +00:00
<Button type="button" label="Cancel" severity="secondary" @click="visible = false"></Button>
<Button type="button" label="Save" @click="visible = false"></Button>
2024-01-19 21:49:35 +00:00
</div>
2023-02-28 08:29:30 +00:00
</Dialog>
</div>
<DocSectionCode :code="code" />
</template>
<script>
export default {
data() {
return {
visible: false,
code: {
2023-09-22 12:54:14 +00:00
basic: `
2024-01-23 22:25:44 +00:00
<Button label="Show" @click="visible = true" />
2023-02-28 08:29:30 +00:00
2024-01-19 21:49:35 +00:00
<Dialog v-model:visible="visible" modal header="Edit Profile" :style="{ width: '25rem' }">
<span class="p-text-secondary block mb-5">Update your information.</span>
<div class="flex align-items-center gap-3 mb-3">
<label for="username" class="font-semibold w-6rem">Username</label>
2024-01-19 22:29:06 +00:00
<InputText id="username" class="flex-auto" autocomplete="off" />
2024-01-19 21:49:35 +00:00
</div>
<div class="flex align-items-center gap-3 mb-5">
<label for="email" class="font-semibold w-6rem">Email</label>
2024-01-19 22:29:06 +00:00
<InputText id="Email" class="flex-auto" autocomplete="off" />
2024-01-19 21:49:35 +00:00
</div>
<div class="flex justify-content-end gap-2">
2024-01-19 21:57:03 +00:00
<Button type="button" label="Cancel" severity="secondary" @click="visible = false"></Button>
<Button type="button" label="Save" @click="visible = false"></Button>
2024-01-19 21:49:35 +00:00
</div>
2023-10-15 09:38:39 +00:00
</Dialog>
`,
2023-09-22 12:54:14 +00:00
options: `
<template>
2023-02-28 08:29:30 +00:00
<div class="card flex justify-content-center">
2024-01-23 22:25:44 +00:00
<Button label="Show" @click="visible = true" />
2024-01-19 21:49:35 +00:00
<Dialog v-model:visible="visible" modal header="Edit Profile" :style="{ width: '25rem' }">
<span class="p-text-secondary block mb-5">Update your information.</span>
<div class="flex align-items-center gap-3 mb-3">
<label for="username" class="font-semibold w-6rem">Username</label>
2024-01-19 22:29:06 +00:00
<InputText id="username" class="flex-auto" autocomplete="off" />
2024-01-19 21:49:35 +00:00
</div>
<div class="flex align-items-center gap-3 mb-5">
<label for="email" class="font-semibold w-6rem">Email</label>
2024-01-19 22:29:06 +00:00
<InputText id="Email" class="flex-auto" autocomplete="off" />
2024-01-19 21:49:35 +00:00
</div>
<div class="flex justify-content-end gap-2">
2024-01-19 21:57:03 +00:00
<Button type="button" label="Cancel" severity="secondary" @click="visible = false"></Button>
<Button type="button" label="Save" @click="visible = false"></Button>
2024-01-19 21:49:35 +00:00
</div>
2023-02-28 08:29:30 +00:00
</Dialog>
</div>
</template>
<script>
export default {
data() {
return {
visible: false
};
}
};
2023-10-15 09:38:39 +00:00
<\/script>
`,
2023-09-22 12:54:14 +00:00
composition: `
<template>
2023-02-28 08:29:30 +00:00
<div class="card flex justify-content-center">
2024-01-23 22:25:44 +00:00
<Button label="Show" @click="visible = true" />
2024-01-19 21:49:35 +00:00
<Dialog v-model:visible="visible" modal header="Edit Profile" :style="{ width: '25rem' }">
<span class="p-text-secondary block mb-5">Update your information.</span>
<div class="flex align-items-center gap-3 mb-3">
<label for="username" class="font-semibold w-6rem">Username</label>
2024-01-19 22:29:06 +00:00
<InputText id="username" class="flex-auto" autocomplete="off" />
2024-01-19 21:49:35 +00:00
</div>
<div class="flex align-items-center gap-3 mb-5">
<label for="email" class="font-semibold w-6rem">Email</label>
2024-01-19 22:29:06 +00:00
<InputText id="Email" class="flex-auto" autocomplete="off" />
2024-01-19 21:49:35 +00:00
</div>
<div class="flex justify-content-end gap-2">
2024-01-19 21:57:03 +00:00
<Button type="button" label="Cancel" severity="secondary" @click="visible = false"></Button>
<Button type="button" label="Save" @click="visible = false"></Button>
2024-01-19 21:49:35 +00:00
</div>
2023-02-28 08:29:30 +00:00
</Dialog>
</div>
</template>
<script setup>
import { ref } from "vue";
const visible = ref(false);
2023-10-15 09:38:39 +00:00
<\/script>
`
2023-02-28 08:29:30 +00:00
}
};
}
};
</script>