mirror of
https://gitee.com/lab1024/smart-admin.git
synced 2025-10-05 11:46:40 +08:00
20 lines
381 B
Vue
20 lines
381 B
Vue
<template>
|
|
<error-content code="401" desc="Oh~~您没有浏览这个页面的权限~" :src="src" />
|
|
</template>
|
|
|
|
<script>
|
|
import error401 from '@/assets/images/error-page/error-401.svg';
|
|
import ErrorContent from './error-content.vue';
|
|
export default {
|
|
name: 'error401',
|
|
components: {
|
|
ErrorContent
|
|
},
|
|
data () {
|
|
return {
|
|
src: error401
|
|
};
|
|
}
|
|
};
|
|
</script>
|