Skip to content

Commit

Permalink
removed redundant axios plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
rastenis committed Jul 25, 2019
1 parent 204277b commit 2b8a0bf
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 15 deletions.
2 changes: 1 addition & 1 deletion components/header.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
</template>

<script>
import axios from "~/plugins/axios";
import axios from "axios";
export default {
methods:{
Expand Down
2 changes: 1 addition & 1 deletion pages/_id.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</template>

<script>
import axios from "~/plugins/axios";
import axios from "axios";
export default {
name: "id",
Expand Down
2 changes: 1 addition & 1 deletion pages/login.vue
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
</template>

<script>
import axios from "~/plugins/axios";
import axios from "axios";
export default {
head() {
Expand Down
2 changes: 1 addition & 1 deletion pages/profile.vue
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@
</template>

<script>
import axios from "~/plugins/axios";
import axios from "axios";
export default {
head() {
Expand Down
2 changes: 1 addition & 1 deletion pages/register.vue
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
</template>

<script>
import axios from "~/plugins/axios";
import axios from "axios";
export default {
head() {
Expand Down
10 changes: 0 additions & 10 deletions plugins/axios.js

This file was deleted.

0 comments on commit 2b8a0bf

Please sign in to comment.