guns/guns-front-project/src/components/Exception/404/index.vue

18 lines
393 B
Vue

<template>
<div style="padding-top: 80px">
<a-result status="404" title="404" sub-title=", 访.">
<template #extra>
<router-link to="/">
<a-button type="primary">返回首页</a-button>
</router-link>
</template>
</a-result>
</div>
</template>
<script>
export default {
name: 'Exception404'
};
</script>