Created
September 10, 2019 18:25
-
-
Save morphatic/4cc87861cd950fc12d644afdc7dd6f37 to your computer and use it in GitHub Desktop.
The main source file for a custom Vuetify component extension
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { VueConstructor } from 'vue' | |
import VStateSelect from './VStateSelect' | |
const VAddressFields = { | |
install (Vue: VueConstructor, options?: any) { | |
Vue.component('v-state-select', VStateSelect) | |
}, | |
} | |
export { VStateSelect } | |
export default VAddressFields | |
if (typeof window !== 'undefined' && window.Vue) { | |
window.Vue.use(VAddressFields) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment