mirror of
https://github.com/cool-team-official/cool-admin-vue.git
synced 2024-11-01 22:20:27 +08:00
14 lines
220 B
Vue
14 lines
220 B
Vue
|
<template>
|
||
|
<error-page :code="404" desc="找不到您要查找的页面"></error-page>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import ErrorPage from "./components/error-page";
|
||
|
|
||
|
export default {
|
||
|
components: {
|
||
|
ErrorPage
|
||
|
}
|
||
|
};
|
||
|
</script>
|