diff options
Diffstat (limited to 'src/views/404.vue')
| -rw-r--r-- | src/views/404.vue | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/views/404.vue b/src/views/404.vue new file mode 100644 index 0000000..7462697 --- /dev/null +++ b/src/views/404.vue @@ -0,0 +1,18 @@ +<template> + <div>404</div> +</template> + +<script lang='ts'> +export default { + setup() { + return {} + }, + beforeCreate() { + location.href = '/' + } +} +</script> + +<style lang='scss' scoped> + +</style> |
