mirror of
https://github.com/creativetimofficial/muse-vue-ant-design-dashboard.git
synced 2025-08-15 19:16:33 +08:00
21 lines
355 B
Vue
21 lines
355 B
Vue
<template>
|
|
<a-result status="404" title="404" sub-title="Sorry, the page you visited does not exist.">
|
|
<template #extra>
|
|
<NuxtLink to="/">
|
|
<a-button type="primary">
|
|
Back Home
|
|
</a-button>
|
|
</NuxtLink>
|
|
</template>
|
|
</a-result>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: ['error'],
|
|
};
|
|
</script>
|
|
|
|
<style>
|
|
</style>
|