2023-12-09 15:47:03 +01:00
|
|
|
export default {
|
|
|
|
|
props: {
|
|
|
|
|
form: {
|
|
|
|
|
type: Object,
|
2024-04-15 19:39:03 +02:00
|
|
|
required: true,
|
2023-12-09 15:47:03 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
|
|
dismissible: {
|
|
|
|
|
type: Boolean,
|
2024-04-15 19:39:03 +02:00
|
|
|
default: true,
|
|
|
|
|
},
|
2023-12-09 15:47:03 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
|
|
methods: {
|
2024-04-15 19:39:03 +02:00
|
|
|
dismiss() {
|
2023-12-09 15:47:03 +01:00
|
|
|
if (this.dismissible) {
|
|
|
|
|
this.form.clear()
|
|
|
|
|
}
|
2024-04-15 19:39:03 +02:00
|
|
|
},
|
|
|
|
|
},
|
2023-12-09 15:47:03 +01:00
|
|
|
}
|