UNPKG

@timbouc/vuetify-country-region-input

Version:

A Vuetify country and region input select component with vue-i18n support. Use components together or standalone.

16 lines (12 loc) 320 B
import Vue from 'vue' import App from './App.vue' import Vuetify from 'vuetify' import 'vuetify/dist/vuetify.min.css' import VCountryRegionSelect from './index' Vue.use(Vuetify) Vue.use(VCountryRegionSelect) Vue.config.productionTip = false new Vue({ render: h => h(App), vuetify: new Vuetify() }).$mount('#app')