Files
IOT_WEB/src/views/error/NotFound.vue
T
2026-08-21 15:27:51 +08:00

10 lines
291 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<template>
<div class="not-found">
<el-result icon="404" title="404" sub-title="抱歉您访问的页面不存在">
<template #extra>
<el-button type="primary" @click="$router.push('/')">返回首页</el-button>
</template>
</el-result>
</div>
</template>