15 lines
323 B
Vue
15 lines
323 B
Vue
<template>
|
|
<error-shell
|
|
:code="403"
|
|
color="warning"
|
|
description="你沒有權限存取此頁面或操作。"
|
|
:icon="mdiShieldLockOutline"
|
|
title="沒有權限"
|
|
/>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { mdiShieldLockOutline } from '@mdi/js'
|
|
import ErrorShell from './ErrorShell.vue'
|
|
</script>
|