@google-translate-select/vue2
Version:
🚀 The package offer vue2 library for @google-translate-select!
17 lines (12 loc) • 362 B
text/typescript
import Select from './google-translate-select.vue'
const withInstall = (Vue: any) => {
Vue.component((Select as any).extendOptions.name, Select)
}
if (typeof window !== 'undefined' && window.Vue) {
withInstall(window.Vue)
}
export const GoogleTranslateSelect = withInstall(Select)
export default {
install: withInstall,
}
export * from './types/props'