18 lines
413 B
Vue
18 lines
413 B
Vue
<template>
|
|
<lay-card class="error-page">
|
|
<lay-exception status="401" title="401" describe="抱歉,你无权访问该页面">
|
|
<template #extra>
|
|
<lay-button>刷新</lay-button>
|
|
<lay-button type="primary">返回</lay-button>
|
|
</template>
|
|
</lay-exception>
|
|
</lay-card>
|
|
</template>
|
|
|
|
<style>
|
|
.error-page {
|
|
padding-top: 200px;
|
|
padding-bottom: 200px;
|
|
margin: 10px;
|
|
}
|
|
</style> |