1 |
- {"version":3,"sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;AACA;;;;AACA;;IAAY,U;;AACZ;;;;;;;;AAIA,IAAM,UAAyB;AAC7B,WAD6B,mBACpB,GADoB,EACC,IADD,EACyB;AACpD,YAAI,GAAJ,CAAQ,iBAAR;AACE,kCADF;AAEE;AAFF,WAGK,IAHL;AAKD,KAP4B;;AAQ7B;AAR6B,CAA/B;AAWA,IAAI,OAAO,MAAP,KAAkB,WAAlB,IAAiC,OAAO,GAA5C,EAAiD;AAC/C,WAAO,GAAP,CAAW,GAAX,CAAe,OAAf;AACD;kBAEc,O","sourcesContent":["import './stylus/app.styl'\nimport VuetifyComponent from './components/Vuetify'\nimport * as components from './components'\nimport directives from './directives'\nimport { VueConstructor } from 'vue'\nimport { Vuetify as VuetifyPlugin, VuetifyUseOptions } from 'vuetify/types'\n\nconst Vuetify: VuetifyPlugin = {\n install (Vue: VueConstructor, args?: VuetifyUseOptions): void {\n Vue.use(VuetifyComponent, {\n components,\n directives,\n ...args\n })\n },\n version: __VUETIFY_VERSION__\n}\n\nif (typeof window !== 'undefined' && window.Vue) {\n window.Vue.use(Vuetify)\n}\n\nexport default Vuetify\n"],"sourceRoot":""}
|