12345678910111213141516171819202122232425262728293031323334353637383940 |
- <template>
- <div id="app">
- <router-view />
- </div>
- </template>
- <script>
- export default {
- name: 'App',
- mounted() {
- const session = [{key: 'username', commit: 'SET_USERNAME'}, {key: 'realName', commit: 'SET_REALNAME'}, {key: 'avatar', commit: 'SET_AVATAR'}, {key: 'userId', commit: 'SET_USERID'}];
- session.forEach(item => {
- if(sessionStorage.getItem(item.key) && this.$store.state.user[item.key] === '') {
- this.$store.commit(`user/${item.commit}`, sessionStorage.getItem(item.key))
- }
- })
- }
- }
- </script>
- <style lang="scss">
- #nprogress .bar {
- background: #409eff !important;
- }
- .measure3D{
- min-width: 130px;
- padding-right: 0;
- padding-left: 0;
- }
- </style>
|