index.vue 536 B

1234567891011121314151617181920212223242526272829303132
  1. <template>
  2. <div class="not-permission-wrap">
  3. 访问无权限
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'NotPermission',
  9. props: {
  10. },
  11. components: {},
  12. data () {
  13. return {
  14. }
  15. }
  16. }
  17. </script>
  18. <style lang="scss" scoped>
  19. @import "../assets/style/bsTheme.scss";
  20. .not-permission-wrap {
  21. width: 100vw;
  22. height: 100vh;
  23. background-color: var(--bs-background-1);
  24. color: var(--bs-el-text);
  25. font-size: 24px;
  26. display: flex;
  27. justify-content: center;
  28. align-items: center;
  29. }
  30. </style>