天波用户运营管理后台系统
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

51 line
960B

  1. <!--
  2. * @Date: 2021-11-29 11:20:35
  3. * @LastEditors: JinxChen
  4. * @LastEditTime: 2022-08-06 10:29:35
  5. * @FilePath: \telpoAdminTemplate\src\views\dashboard\index.vue
  6. * @description:
  7. -->
  8. <template>
  9. <div class="dashboard-container">
  10. <div class="dashboard-text">欢迎来到用户运营管理平台</div>
  11. </div>
  12. </template>
  13. <script>
  14. import { mapGetters } from 'vuex'
  15. export default {
  16. name: 'Dashboard',
  17. computed: {
  18. ...mapGetters([
  19. 'name'
  20. ])
  21. },
  22. mounted() {}
  23. }
  24. </script>
  25. <style lang="scss" scoped>
  26. .dashboard {
  27. &-container {
  28. padding: 30px;
  29. height: 100vh;
  30. width: 100%;
  31. /* background-image: url('../../assets/bg.jpeg'); */
  32. background-color: #fafafa;
  33. background-size: cover;
  34. background-repeat:no-repeat;
  35. display: flex;
  36. justify-content: center;
  37. align-items: center;
  38. .dashboard-text {
  39. text-align: center;
  40. }
  41. }
  42. &-text {
  43. font-size: 30px;
  44. line-height: 46px;
  45. }
  46. }
  47. </style>