Skip to content

wt-error-page.vue

Specs

Props

Name Required Types Default Description Example Deprecated
type string - Error type

Events

Name Params Description
back

Example 404 Error Page

Not found pic

Looks like you're lost

Sorry, we can't find the page you want.

Code
vue
<script setup></script>

<template>
  <wt-error-page
    style="min-width: 100%; width: 100%; min-height: auto"
    type="404"
  />
</template>

<style scoped lang="scss"></style>

Example 403 Error Page

Forbidden pic

Access denied

Sorry, you have not enough privileges to see this page.

Code
vue
<script setup></script>

<template>
  <wt-error-page
    style="min-width: 100%; width: 100%; min-height: auto"
    type="403"
  />
</template>

<style scoped lang="scss"></style>