forked from area17/twill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain-dashboard.js
49 lines (41 loc) · 1.38 KB
/
main-dashboard.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import Vue from 'vue'
import store from '@/store'
// General shared behaviors
import main from '@/main'
import search from '@/main-search'
import openMediaLibrary from '@/behaviors/openMediaLibrary'
// Plugins
import A17Config from '@/plugins/A17Config'
import A17Notif from '@/plugins/A17Notif'
// Dashboard
import a17ShortcutCreator from '@/components/dashboard/shortcutCreator.vue'
import A17ActivityFeed from '@/components/dashboard/activityFeed.vue'
import A17StatFeed from '@/components/dashboard/statFeed.vue'
import A17GenericFeed from '@/components/dashboard/genericFeed.vue'
// Store modules
import datatable from '@/store/modules/datatable'
import language from '@/store/modules/language'
import form from '@/store/modules/form'
// configuration
Vue.use(A17Config)
Vue.use(A17Notif)
store.registerModule('datatable', datatable)
store.registerModule('language', language)
store.registerModule('form', form)
/* eslint-disable no-new */
/* eslint no-unused-vars: "off" */
window[process.env.VUE_APP_NAME].vm = window.vm = new Vue({
store, // inject store to all children
el: '#app',
components: {
'a17-shortcut-creator': a17ShortcutCreator,
'a17-activity-feed': A17ActivityFeed,
'a17-stat-feed': A17StatFeed,
'a17-feed': A17GenericFeed
},
created: function () {
openMediaLibrary()
}
})
// DOM Ready general actions
document.addEventListener('DOMContentLoaded', main)