Skip to content

Instantly share code, notes, and snippets.

@mostafa6765
Created April 1, 2021 18:15
Show Gist options
  • Save mostafa6765/efdc8b714ddb48e574c399de2c57978e to your computer and use it in GitHub Desktop.
Save mostafa6765/efdc8b714ddb48e574c399de2c57978e to your computer and use it in GitHub Desktop.
develop vuejs plugin - vuejs plugin boilerplate
const MyVuePlugin = {
install(Vue, options){
//all process
}
}
if (typeof window !== 'undefined' && window.Vue) {
window.Vue.use(MyVuePlugin);
}
export default MyVuePlugin;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment