You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
duoji-frontend/src/views/404.vue

18 lines
368 B
Vue

<template>
<a-result status="404" title="404" sub-title="Sorry, the page you visited does not exist.">
<template #extra>
<!-- <a-button type="primary">
Back Home
</a-button>-->
</template>
</a-result>
</template>
<script>
export default {
name: "notFound",
data() {
return {};
}
};
</script>