UNPKG

376 BPlain TextView Raw
1import * as components from './components'
2import * as directives from './directives'
3import Vuetify from './framework'
4
5export default Vuetify
6
7const install = Vuetify.install
8
9Vuetify.install = (Vue, args) => {
10 install.call(Vuetify, Vue, {
11 components,
12 directives,
13 ...args,
14 })
15}
16
17if (typeof window !== 'undefined' && window.Vue) {
18 window.Vue.use(Vuetify)
19}