Blame view

src/views/demo/permission/front/AuthPageA.vue 428 Bytes
陈文彬 authored
1
<template>
vben authored
2
  <div class="m-10 auth-page">Super 角色可见</div>
陈文彬 authored
3
4
5
</template>
<script lang="ts">
  import { defineComponent } from 'vue';
6
陈文彬 authored
7
8
  export default defineComponent({});
</script>
9
10
11
<style lang="less" scoped>
  .auth-page {
    display: flex;
vben authored
12
13
    align-items: center;
    justify-content: center;
14
15
    height: 300px;
    border-radius: 12px;
vben authored
16
17
18
    background-color: #409efe;
    color: #fff;
    font-size: 24px;
19
20
  }
</style>