<template>
<div class="container">
<!-- <img src="@/assets/images/403.png" /> -->
<h3>暂无访问权限</h3>
</div>
</template>
<script>
export default {
name: "Page403",
components: {},
data() {
return {};
},
computed: {},
methods: {},
beforeMount() {},
};
</script>
<style lang="scss" scoped>
.container {
width: 100%;
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
& > img {
display: block;
}
}
</style>
-
wanli authoredd327191f