|
- <!--
- * @Date: 2021-11-29 11:20:35
- * @LastEditors: JinxChen
- * @LastEditTime: 2022-08-06 10:29:35
- * @FilePath: \telpoAdminTemplate\src\views\dashboard\index.vue
- * @description:
- -->
- <template>
- <div class="dashboard-container">
- <div class="dashboard-text">欢迎来到用户运营管理平台</div>
- </div>
- </template>
-
- <script>
- import { mapGetters } from 'vuex'
-
- export default {
- name: 'Dashboard',
- computed: {
- ...mapGetters([
- 'name'
- ])
- },
- mounted() {}
- }
- </script>
-
- <style lang="scss" scoped>
- .dashboard {
- &-container {
- padding: 30px;
- height: 100vh;
- width: 100%;
- /* background-image: url('../../assets/bg.jpeg'); */
- background-color: #fafafa;
- background-size: cover;
- background-repeat:no-repeat;
- display: flex;
- justify-content: center;
- align-items: center;
- .dashboard-text {
- text-align: center;
- }
- }
- &-text {
- font-size: 30px;
- line-height: 46px;
- }
- }
- </style>
|