2d21111e
wangming
项目初始化
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
<template>
<div class="dashboard-container">
<div class="dashboard-text">欢迎您: {{ name }}</div>
</div>
</template>
<script>
import { mapGetters } from 'vuex'
export default {
name: 'Dashboard',
computed: {
...mapGetters([
'name'
])
}
}
</script>
<style lang="scss" scoped>
.dashboard {
&-container {
margin: 30px;
background-color: #304156;
border-radius: 7px;
}
&-text {
font-size: 18px;
line-height: 46px;
padding: 0 10px;
color: #FFF;
}
}
</style>
|