ant-design-vue/antdv-demo/docs/result/demo/403.md

29 lines
448 B
Markdown

<cn>
#### 403
ไฝ ๆฒกๆœ‰ๆญค้กต้ข็š„่ฎฟ้—ฎๆƒ้™ใ€‚
</cn>
<us>
#### 403
you are not authorized to access this page.
</us>
```vue
<template>
<a-result status="403" title="403" sub-title="Sorry, you are not authorized to access this page.">
<template #extra>
<a-button type="primary">
Back Home
</a-button>
</template>
</a-result>
</template>
<script>
export default {
data() {
return {};
},
};
</script>
```