forked from quasarframework/quasar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomponents.js
More file actions
23 lines (18 loc) · 773 Bytes
/
components.js
File metadata and controls
23 lines (18 loc) · 773 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// import something here
import DocExample from 'components/DocExample.vue'
import DocCode from 'components/DocCode.vue'
import DocApi from 'components/DocApi.vue'
import DocInstallation from 'components/DocInstallation.vue'
import DocLink from 'components/DocLink.vue'
import DocPage from 'components/DocPage.vue'
import AppExtensionDiscover from 'components/AppExtensionDiscover.vue'
// leave the export, even if you don't use it
export default async ({ Vue }) => {
Vue.component('DocExample', DocExample)
Vue.component('DocCode', DocCode)
Vue.component('DocApi', DocApi)
Vue.component('DocInstallation', DocInstallation)
Vue.component('DocLink', DocLink)
Vue.component('DocPage', DocPage)
Vue.component('AppExtensionDiscover', AppExtensionDiscover)
}