Vue的路由模式处理404
Posted houzhicongone
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue的路由模式处理404相关的知识,希望对你有一定的参考价值。
在路由配置的界面进行配置:
path:'*',
component: importPage('playVue/error'),
,
定义的错误页面error.vue
<template>
<div>
<h2>404</h2>
</div>
</template>
<script>
import BtUi from 'components/basic-ui/bontal-base-ui.umd.min';
export default
name:'notFound',
data()
return
,
methods:
</script>
<style scoped>
</style>
以上是关于Vue的路由模式处理404的主要内容,如果未能解决你的问题,请参考以下文章