123456789101112131415161718192021222324252627282930313233 |
- <template>
- <div id="app">
- <router-view/>
- </div>
- </template>
- <script>
- import { setStore } from '@/utils/store'
- export default {
- name: 'App',
- created() {
- // token
- // let token = this.$route.query.token
- // console.log(this.$route.query.token)
- // if(token) {
- // setStore({'name':'token', 'content': token, 'type':''})
- // }
- }
- }
- </script>
- <style>
- html, body, #app {
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- width: 100%;
- height: 100%;
- margin: 0px;
- font-family: 'Avenir', Helvetica, Arial, sans-serif;
- font-size: 14px;
- color: #3E3E3E;
- }
- </style>
|