import NbSelect from './src/select.vue'
import NbOption from './src/option.vue'
NbSelect.install = function( Vue ) {
Vue.component( NbSelect.name, NbSelect )
}
NbOption.install = function( Vue ) {
Vue.component( NbOption.name, NbOption)
}
export {
NbSelect,
NbOption
}