NoPermission.vue 699 Bytes
<template>
    <div class="noPermission">
      <div><img src="../../assets/noPrremission.png"/></div>
      <div>抱歉,您无访问权限</div>
    </div>
</template>

<script>
export default {
  name: 'noPermission',
  components: {},
  data () {
    return {}
  },
  watch: {},
  created: function () {},
  computed: {},
  methods: {},
  mounted () {}
}
</script>

<style scoped>
.noPermission{
  position: fixed;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.noPermission>div:nth-of-type(2){
  font-size: 20px;
}
.noPermission image {
  width: 402px;
  height: 284px;
}
.noPermission>div:nth-of-type(1){
  margin-right: 88px;
}
</style>