aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/views/404.vue
blob: 7462697e36d54b3ac1afd04172216912d2bf4d60 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<template>
    <div>404</div>
</template>

<script lang='ts'>
export default {
    setup() {
        return {}
    },
    beforeCreate() {
        location.href = '/'
    }
}
</script>

<style lang='scss' scoped>

</style>