hideToasts()
import toast from "devextreme-vue/hide-toasts"
The code below uses a Button to hide all the Toast components on click.
App.vue
- <template>
- <DxButton
- text="Hide all Toasts"
- @click="onClick"
- />
- </template>
- <script>
- import { DxButton } from 'devextreme-vue/button';
- import hideToasts from 'devextreme/ui/toast/hide_toasts';
- export default {
- methods: {
- onClick() {
- hideToasts();
- }
- }
- }
- </script>
Feel free to share topic-related thoughts here.
If you have technical questions, please create a support ticket in the DevExpress Support Center.
Thank you for the feedback!
If you have technical questions, please create a support ticket in the DevExpress Support Center.