index.js 162 B

12345678
  1. import InfoWindow from './src/InfoWindow.vue';
  2. InfoWindow.install = function(Vue) {
  3. Vue.component(InfoWindow.name, InfoWindow);
  4. };
  5. export default InfoWindow;