404.vue 558 Bytes
<template>
    <div class="no_page_wrap">
        <el-empty description="页面找不到了">
            <el-button round class="primary-btn" @click="linkTo">去首页</el-button>
        </el-empty>
    </div>
</template>

<script setup lang="ts">
    import router from "../router/index";

    const arrowPath = ref("/")
    defineExpose({arrowPath})

    let linkTo = () => {
        router.push("/")
    }
</script>

<style scoped>
    .no_page_wrap {
        .primary-btn {
            color: #FFFFFF;
            width: 100%;
        }
    }
</style>