Last active
November 27, 2017 21:21
-
-
Save darrenjennings/c7a19beb38d72972dd8304866049e977 to your computer and use it in GitHub Desktop.
Sample Vuejs plugin file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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