UNPKG

514 BJavaScriptView Raw
1import VuePlugin from './vue-plugin.js'
2
3import * as components from './components.js'
4import * as directives from './directives.js'
5import * as plugins from './plugins.js'
6import * as utils from './utils.js'
7
8export default {
9 // for when importing all
10 ...VuePlugin,
11 install (Vue, opts) {
12 VuePlugin.install(Vue, {
13 components,
14 directives,
15 plugins,
16 ...opts
17 })
18 },
19
20 // for when cherry-picking
21 Quasar: VuePlugin,
22
23 ...components,
24 ...directives,
25 ...plugins,
26 ...utils
27}