Skip to content

Instantly share code, notes, and snippets.

@darrenjennings
Last active November 27, 2017 21:21
Show Gist options
  • Save darrenjennings/c7a19beb38d72972dd8304866049e977 to your computer and use it in GitHub Desktop.
Save darrenjennings/c7a19beb38d72972dd8304866049e977 to your computer and use it in GitHub Desktop.
Sample Vuejs plugin file
import VueToAKill from "./VueToAKill.vue";
const VueToAKillLib = {
install(Vue) {
Vue.component("vue-to-a-kill", VueToAKill);
}
};
export default VueToAKillLib;
if (typeof window !== "undefined" && window.Vue) {
window.Vue.use(VueToAKillLib);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment