7 lines
124 B
Vue
Raw Normal View History

2022-11-17 17:49:19 +08:00
<template>
2023-02-09 15:29:29 +08:00
<Error @error-click="push('/')" />
2022-11-17 17:49:19 +08:00
</template>
2022-07-18 19:06:37 +08:00
<script setup lang="ts">
const { push } = useRouter()
</script>