This commit is contained in:
Cüneyt Şentürk 2021-06-30 15:01:17 +03:00
parent e2f29060a2
commit 72acc3e3ee
2 changed files with 121 additions and 117 deletions

View File

@ -4,21 +4,21 @@
* building robust, powerful web applications using Vue and Laravel. * building robust, powerful web applications using Vue and Laravel.
*/ */
require('./../../bootstrap'); require('./../../bootstrap');
import Vue from 'vue'; import Vue from 'vue';
import DashboardPlugin from './../../plugins/dashboard-plugin'; import DashboardPlugin from './../../plugins/dashboard-plugin';
import Global from './../../mixins/global'; import Global from './../../mixins/global';
import Form from './../../plugins/form'; import Form from './../../plugins/form';
import BulkAction from './../../plugins/bulk-action'; import BulkAction from './../../plugins/bulk-action';
// plugin setup // plugin setup
Vue.use(DashboardPlugin); Vue.use(DashboardPlugin);
const app = new Vue({ const app = new Vue({
el: '#main-body', el: '#main-body',
mixins: [ mixins: [
@ -31,4 +31,4 @@
bulk_action: new BulkAction('vendors') bulk_action: new BulkAction('vendors')
} }
} }
}); });

View File

@ -4,21 +4,21 @@
* building robust, powerful web applications using Vue and Laravel. * building robust, powerful web applications using Vue and Laravel.
*/ */
require('./../../bootstrap'); require('./../../bootstrap');
import Vue from 'vue'; import Vue from 'vue';
import DashboardPlugin from './../../plugins/dashboard-plugin'; import DashboardPlugin from './../../plugins/dashboard-plugin';
import Global from './../../mixins/global'; import Global from './../../mixins/global';
import Form from './../../plugins/form'; import Form from './../../plugins/form';
import BulkAction from './../../plugins/bulk-action'; import BulkAction from './../../plugins/bulk-action';
// plugin setup // plugin setup
Vue.use(DashboardPlugin); Vue.use(DashboardPlugin);
const app = new Vue({ const app = new Vue({
el: '#main-body', el: '#main-body',
mixins: [ mixins: [
@ -59,6 +59,7 @@
this.can_login = true; this.can_login = true;
this.form.create_user = true; this.form.create_user = true;
return true; return true;
} }
@ -69,6 +70,7 @@
this.can_login = false; this.can_login = false;
this.form.create_user = false; this.form.create_user = false;
return false; return false;
} }
}) })
@ -81,6 +83,7 @@
this.can_login = false; this.can_login = false;
this.form.create_user = false; this.form.create_user = false;
return false; return false;
} }
@ -90,8 +93,9 @@
this.can_login = false; this.can_login = false;
this.form.create_user = false; this.form.create_user = false;
return false; return false;
} }
} }
} }
}); });