## Developer guide for `` component ### Folder Structure From Laravel Application - resources - js - core - components - error-page - Error.Vue ### Register ```js Vue.component('app-avatar', require('./components/error-page/Error').default); ``` ### Props 1. errorType - `type` : `String` - `required` : `true` 2. errorTitle - `type` : `String` - `default` : `'Something went wrong!'` 3. errorDescription - `type` : `String` - `default` : `''` 4. url - `type` : `String` - `default` : `'/'` ### Usages Available type for `` - Example usages of `` ``` ```