Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.js 252B

1234567891011121314151617
  1. import Select from './Select'
  2. import { use, registerComponent } from '../../utils/plugins'
  3. const Plugin = {
  4. install(Vue) {
  5. registerComponent(Vue, Select)
  6. }
  7. }
  8. use(Plugin)
  9. export default Plugin
  10. export {
  11. Select
  12. }