<template> <Error @error-click="errorClick" /> </template> <script setup lang="ts"> import { Error } from '@/components/Error' import { useRouter } from 'vue-router' const { push } = useRouter() const errorClick = () => { push('/') } </script>