From d01f14d9f76c936375b05bbe8e448be08e90ae66 Mon Sep 17 00:00:00 2001 From: weiweitoo Date: Thu, 19 Jul 2018 18:01:16 +0800 Subject: [PATCH] Remove some unnessary console.log --- resources/assets/js/components/LocaleDropdown.vue | 2 -- resources/assets/js/pages/home.vue | 4 ++-- resources/assets/js/store/modules/auth.js | 1 - 3 files changed, 2 insertions(+), 5 deletions(-) diff --git a/resources/assets/js/components/LocaleDropdown.vue b/resources/assets/js/components/LocaleDropdown.vue index 6faefff5..fb1d55ad 100644 --- a/resources/assets/js/components/LocaleDropdown.vue +++ b/resources/assets/js/components/LocaleDropdown.vue @@ -130,7 +130,6 @@ export default { let $this = this axios.get('/api/rate').then(response => { this.rate = response.data - console.log(this.rate); }) }, createRate: function () { @@ -145,7 +144,6 @@ export default { x2_ba: this.rateForm.x2_ba } - console.log(newRate) axios.post('/api/update-rate', newRate) .then((response) => { this.loading = false diff --git a/resources/assets/js/pages/home.vue b/resources/assets/js/pages/home.vue index 48e105c6..945646a9 100644 --- a/resources/assets/js/pages/home.vue +++ b/resources/assets/js/pages/home.vue @@ -1,5 +1,4 @@