mine.vue
664 Bytes
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
35
36
37
38
<template>
<LayoutApp :show-back="true">
<div class="body" ref="body">
<div>username: {{username}}</div>
<!-- <List></List> -->
</div>
</LayoutApp>
</template>
<script>
// import List from './components/list';
import { createNamespacedHelpers } from 'vuex'
const {mapState} = createNamespacedHelpers('home/mine');
export default {
computed:{
...mapState({
username: state => state.username
})
},
components: {
// List
}
};
</script>
<style lang="scss" scoped>
.footer {
position: absolute;
bottom: 0;
width: 100%;
z-index: 100;
}
.body {
height: 100%;
overflow-y: auto;
}
</style>