2019-02-08 10:55:52 +00:00
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<div class="content-section introduction">
|
|
|
|
<div class="feature-intro">
|
|
|
|
<h1>Toast</h1>
|
|
|
|
<p>Toast is used to display messages in an overlay.</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="content-section implementation p-fluid">
|
|
|
|
<h3>Severities</h3>
|
|
|
|
<div class="p-grid">
|
|
|
|
<div class="p-col-12 p-md-3">
|
|
|
|
<Button label="Success" class="p-button-success" @click="showSuccess" />
|
|
|
|
</div>
|
|
|
|
<div class="p-col-12 p-md-3">
|
|
|
|
<Button label="Info" class="p-button-info" @click="showInfo" />
|
|
|
|
</div>
|
|
|
|
<div class="p-col-12 p-md-3">
|
|
|
|
<Button label="Warn" class="p-button-warning" @click="showWarn" />
|
|
|
|
</div>
|
|
|
|
<div class="p-col-12 p-md-3">
|
|
|
|
<Button label="Error" class="p-button-danger" @click="showError" />
|
|
|
|
</div>
|
|
|
|
</div>
|
2019-02-08 13:16:00 +00:00
|
|
|
|
|
|
|
<h3>Positions</h3>
|
|
|
|
<div class="p-grid">
|
|
|
|
<div class="p-col-12 p-md-4">
|
|
|
|
<Button label="Top Left" @click="showTopLeft" />
|
|
|
|
</div>
|
|
|
|
<div class="p-col-12 p-md-4">
|
|
|
|
<Button label="Bottom Left" class="p-button-warning" @click="showBottomLeft" />
|
|
|
|
</div>
|
|
|
|
<div class="p-col-12 p-md-4">
|
|
|
|
<Button label="Bottom Right" class="p-button-success" @click="showBottomRight" />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<h3>Options</h3>
|
|
|
|
<div class="p-grid">
|
|
|
|
<div class="p-col-12 p-md-6">
|
|
|
|
<Button @click="showMultiple" label="Multiple" class="p-button-warning" />
|
|
|
|
</div>
|
|
|
|
<div class="p-col-12 p-md-6">
|
|
|
|
<Button @click="showSticky" label="Sticky" />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<h3>Remove All</h3>
|
|
|
|
<Button @click="clear" label="Clear" />
|
2019-02-08 10:55:52 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
messages: [],
|
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
showSuccess() {
|
2019-02-08 13:16:00 +00:00
|
|
|
this.$toast.add({severity:'success', summary: 'Success Message', detail:'Order submitted', life: 3000});
|
2019-02-08 10:55:52 +00:00
|
|
|
},
|
|
|
|
showInfo() {
|
2019-02-08 13:16:00 +00:00
|
|
|
this.$toast.add({severity:'info', summary: 'Info Message', detail:'PrimeVue rocks', life: 3000});
|
2019-02-08 10:55:52 +00:00
|
|
|
},
|
|
|
|
showWarn() {
|
2019-02-08 13:16:00 +00:00
|
|
|
this.$toast.add({severity:'warn', summary: 'Warn Message', detail:'There are unsaved changes', life: 3000});
|
2019-02-08 10:55:52 +00:00
|
|
|
},
|
|
|
|
showError() {
|
2019-02-08 13:16:00 +00:00
|
|
|
this.$toast.add({severity:'error', summary: 'Error Message', detail:'Validation failed', life: 3000});
|
|
|
|
},
|
|
|
|
showTopLeft() {
|
|
|
|
this.$toast.add({severity: 'info', summary: 'Info ', detail: 'You need to close Me', group: 'tl', life: 3000});
|
|
|
|
},
|
|
|
|
showBottomLeft() {
|
|
|
|
this.$toast.add({severity:'warn', summary: 'Warn Message', detail:'There are unsaved changes', group: 'bl', life: 3000});
|
|
|
|
},
|
|
|
|
showBottomRight() {
|
|
|
|
this.$toast.add({severity:'success', summary: 'Success Message', detail:'Order submitted', group: 'br', life: 3000});
|
|
|
|
},
|
|
|
|
showSticky() {
|
|
|
|
this.$toast.add({severity: 'info', summary: 'Sticky Message', detail: 'You need to close Me'});
|
|
|
|
},
|
|
|
|
showMultiple() {
|
|
|
|
this.$toast.add({severity:'info', summary:'Message 1', detail:'PrimeVue rocks', life: 3000});
|
|
|
|
this.$toast.add({severity:'info', summary:'Message 1', detail:'PrimeVue rocks', life: 3000});
|
|
|
|
this.$toast.add({severity:'info', summary:'Message 1', detail:'PrimeVue rocks', life: 3000});
|
|
|
|
},
|
|
|
|
clear() {
|
|
|
|
this.$toast.removeAllGroups();
|
2019-02-08 10:55:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
button.p-button {
|
|
|
|
margin-right: .5em;
|
|
|
|
}
|
|
|
|
</style>
|