Vue file formating..

This commit is contained in:
Cüneyt Şentürk 2020-01-21 16:24:56 +03:00
parent f0b50b53e8
commit 0876197e35
11 changed files with 13 additions and 34 deletions

View File

@ -12,9 +12,6 @@ import DashboardPlugin from './../../plugins/dashboard-plugin';
import Global from './../../mixins/global'; import Global from './../../mixins/global';
import Form from './../../plugins/form';
import BulkAction from './../../plugins/bulk-action';
// plugin setup // plugin setup
Vue.use(DashboardPlugin); Vue.use(DashboardPlugin);
@ -24,9 +21,4 @@ const app = new Vue({
mixins: [ mixins: [
Global Global
], ],
data: function () {
return {
}
}
}); });

View File

@ -28,9 +28,4 @@ const app = new Vue({
mixins: [ mixins: [
Global Global
], ],
data: function () {
return {
}
}
}); });

View File

@ -13,9 +13,6 @@ import DashboardPlugin from './../../plugins/dashboard-plugin';
import Global from './../../mixins/global'; import Global from './../../mixins/global';
import Form from './../../plugins/form';
import BulkAction from './../../plugins/bulk-action';
// plugin setup // plugin setup
Vue.use(DashboardPlugin); Vue.use(DashboardPlugin);
@ -25,9 +22,4 @@ const app = new Vue({
mixins: [ mixins: [
Global Global
], ],
data: function () {
return {
}
}
}); });

View File

@ -32,8 +32,8 @@ const app = new Vue({
} }
}, },
methods:{ methods: {
taxRateReplace(){ taxRateReplace() {
this.form.rate = this.form.rate.replace(',', '.'); this.form.rate = this.form.rate.replace(',', '.');
}, },
} }