Skip to content

Commit

Permalink
feat: 오타수정
Browse files Browse the repository at this point in the history
  • Loading branch information
JAY-Chan9yu committed Jan 2, 2023
1 parent ed03966 commit 1dfda84
Showing 1 changed file with 0 additions and 33 deletions.
33 changes: 0 additions & 33 deletions frontend/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -48,39 +48,6 @@ export default {
}
</script>

<script>
import UserList from './components/UserList.vue'
import {mapState} from 'vuex';
export default {
name: 'App',
components: {
UserList
},
computed: {
...mapState(['isLoading', 'refCount'])
},
created() {
this.axios.interceptors.request.use((config) => {
this.$store.commit('loading', true);
return config;
}, (error) => {
this.$store.commit('loading', false);
return Promise.reject(error);
});
this.axios.interceptors.response.use((response) => {
this.$store.commit('loading', false);
return response;
}, (error) => {
this.$store.commit('loading', false);
return Promise.reject(error);
});
}
}
</script>

<style>
@import url('https://cdn.rawgit.com/innks/NanumSquareRound/master/nanumsquareround.min.css');
@import "../src/assets/styles/main.css";
Expand Down

0 comments on commit 1dfda84

Please sign in to comment.