liweilong
2020-10-30 2a61f64ebeeec3fff23b7adbce8c7fbfc54add51
提交 | 用户 | age
2a61f6 1 <template>
L 2   <div class="app-container">
3     <h1 style="text-align: center;margin-top: 5%">欢迎来到芙艾线下活动追踪系统</h1>
4   </div>
5 </template>
6
7 <script>
8
9 import { getUserData } from '@/utils/auth' // get token from session
10 export default {
11   name: 'Dashboard',
12   data() {
13     return {
14       name: ''
15     }
16   },
17   mounted() {
18     this.init()
19   },
20   methods: {
21     init() {
22       console.log(getUserData())
23     }
24   }
25 }
26 </script>
27
28 <style lang="scss" scoped>
29 </style>