App.vue 663 B

123456789101112131415161718192021222324252627282930313233
  1. <template>
  2. <div id="app">
  3. <router-view/>
  4. </div>
  5. </template>
  6. <script>
  7. import { setStore } from '@/utils/store'
  8. export default {
  9. name: 'App',
  10. created() {
  11. // token
  12. // let token = this.$route.query.token
  13. // console.log(this.$route.query.token)
  14. // if(token) {
  15. // setStore({'name':'token', 'content': token, 'type':''})
  16. // }
  17. }
  18. }
  19. </script>
  20. <style>
  21. html, body, #app {
  22. -webkit-font-smoothing: antialiased;
  23. -moz-osx-font-smoothing: grayscale;
  24. width: 100%;
  25. height: 100%;
  26. margin: 0px;
  27. font-family: 'Avenir', Helvetica, Arial, sans-serif;
  28. font-size: 14px;
  29. color: #3E3E3E;
  30. }
  31. </style>