Merge pull request #1122 from batuhawk/master

Some component usage updated
This commit is contained in:
Batuhan Baş 2020-01-14 15:56:50 +03:00 committed by GitHub
commit f6d811554f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 9 deletions

View File

@ -16,10 +16,8 @@ import {Progress} from 'element-ui';
import AkauntingCarousel from './../../components/AkauntingCarousel';
Vue.use(Progress);
// plugin setup
Vue.use(DashboardPlugin);
Vue.use(DashboardPlugin, Progress);
const app = new Vue({
el: '#app',

View File

@ -15,10 +15,8 @@ import Global from './../../mixins/global';
import {Tooltip} from 'element-ui';
Vue.use(Tooltip);
// plugin setup
Vue.use(DashboardPlugin);
Vue.use(DashboardPlugin, Tooltip);
const app = new Vue({
el: '#app',

View File

@ -17,10 +17,8 @@ import BulkAction from './../../plugins/bulk-action';
import {ColorPicker} from 'element-ui';
Vue.use(ColorPicker);
// plugin setup
Vue.use(DashboardPlugin);
Vue.use(DashboardPlugin, ColorPicker);
const app = new Vue({
el: '#app',