--- title: "" description: The component handles client-side errors happening in its default slot. --- # `` The `` component handles client-side errors happening in its default slot, using Vue's [`onErrorCaptured` hook.](https://vuejs.org/api/composition-api-lifecycle.html#onerrorcaptured) ## Events - **`@error`**: Event emitted when the default slot of the component throws an error. ```vue ``` ## Slots - **#error**: Specify a fallback content to display in case of error. ```vue ``` ::ReadMore{link="/docs/getting-started/error-handling"} ::