Merged new Docs and Demos

This commit is contained in:
Cagatay Civici 2023-02-28 11:29:30 +03:00
parent 296cc217fb
commit dfcc8ef4e7
1235 changed files with 130757 additions and 122640 deletions

64
doc/toast/BasicDoc.vue Normal file
View file

@ -0,0 +1,64 @@
<template>
<DocSectionText v-bind="$attrs">
<p>
Ideal location of a Toast is the main application template so that it can be used by any component within the application. A single message is represented by the Message interface in PrimeVue that defines various properties such as
severity, summary and detail.
</p>
</DocSectionText>
<div class="card flex justify-content-center">
<Button label="Show" @click="show()" />
</div>
<DocSectionCode :code="code" />
</template>
<script>
export default {
data() {
return {
code: {
basic: `
<Toast />
<Button label="Show" @click="show()" />`,
options: `
<template>
<div class="card flex justify-content-center">
<Toast />
<Button label="Show" @click="show()" />
</div>
</template>
<script>
export default {
methods: {
show() {
this.$toast.add({ severity: 'info', summary: 'Info', detail: 'Message Content' });
}
}
};
<\/script>`,
composition: `
<template>
<div class="card flex justify-content-center">
<Toast />
<Button label="Show" @click="show()" />
</div>
</template>
<script setup>
import { useToast } from "primevue/usetoast";
const toast = useToast();
const show = () => {
toast.add({ severity: 'info', summary: 'Info', detail: 'Message Content' });
};
<\/script>`
}
};
},
methods: {
show() {
this.$toast.add({ severity: 'info', summary: 'Info', detail: 'Message Content' });
}
}
};
</script>