Skip to content

Instantly share code, notes, and snippets.

@thangman22
Created July 30, 2017 15:59
Show Gist options
  • Save thangman22/a9b485ad966408cd105aaaa92900298c to your computer and use it in GitHub Desktop.
Save thangman22/a9b485ad966408cd105aaaa92900298c to your computer and use it in GitHub Desktop.
vue-custom-element.js
import Vue from 'vue'
// include vue-custom-element plugin to Vue
import VueCustomElement from 'vue-custom-element'
Vue.use(VueCustomElement)
// import and register your component(s)
import ShareButtonsComponent from './components/ShareButtonsComponent'
Vue.customElement('share-buttons', ShareButtonsComponent)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment