UNPKG

vuetify-wcag

Version:

VuetifyJS but then WCAG/A11Y compatible

20 lines (15 loc) 376 B
import * as components from './components' import * as directives from './directives' import Vuetify from './framework' export default Vuetify const install = Vuetify.install Vuetify.install = (Vue, args) => { install.call(Vuetify, Vue, { components, directives, ...args, }) } if (typeof window !== 'undefined' && window.Vue) { window.Vue.use(Vuetify) }