Blame view

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