tooltips added for dashboard status
This commit is contained in:
@ -14,15 +14,16 @@ import {getQueryVariable} from './../../plugins/functions';
|
||||
import AkauntingDashboard from './../../components/AkauntingDashboard';
|
||||
import AkauntingWidget from './../../components/AkauntingWidget';
|
||||
|
||||
import {DatePicker} from 'element-ui';
|
||||
import {DatePicker, Tooltip} from 'element-ui';
|
||||
|
||||
Vue.use(DatePicker);
|
||||
Vue.use(DatePicker, Tooltip);
|
||||
|
||||
const dashboard = new Vue({
|
||||
el: '#main-body',
|
||||
|
||||
components: {
|
||||
[DatePicker.name]: DatePicker,
|
||||
[Tooltip.name]: Tooltip,
|
||||
AkauntingDashboard,
|
||||
AkauntingWidget
|
||||
},
|
||||
@ -51,6 +52,7 @@ const dashboard = new Vue({
|
||||
sort: 0,
|
||||
},
|
||||
filter_date: [],
|
||||
|
||||
};
|
||||
},
|
||||
|
||||
|
@ -11,12 +11,17 @@ import Vue from 'vue';
|
||||
|
||||
import Global from './../../mixins/global';
|
||||
|
||||
import Form from './../../plugins/form';
|
||||
import BulkAction from './../../plugins/bulk-action';
|
||||
import {Tooltip} from 'element-ui';
|
||||
|
||||
Vue.use(Tooltip);
|
||||
|
||||
const app = new Vue({
|
||||
el: '#app',
|
||||
|
||||
components: {
|
||||
[Tooltip.name]: Tooltip,
|
||||
},
|
||||
|
||||
mixins: [
|
||||
Global
|
||||
],
|
||||
|
Reference in New Issue
Block a user