Skip to content

Instantly share code, notes, and snippets.

@2Fwebd
Last active February 5, 2019 21:33
Show Gist options
  • Save 2Fwebd/f1cc326d34ae1abc97583f6650e42f66 to your computer and use it in GitHub Desktop.
Save 2Fwebd/f1cc326d34ae1abc97583f6650e42f66 to your computer and use it in GitHub Desktop.
(function() {
Vue.component('woffice-members-map', {
template: '<div id="woffice-members-map__content"></div>',
props: ['url', 'height'],
data: function () {
return {
loaded: false,
members: []
}
},
mounted: function() {
},
methods: {
}
});
new Vue({
el: $('#woffice-members-map__wrapper'),
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment