Skip to content

Instantly share code, notes, and snippets.

@aptiko
Created June 18, 2021 11:10
Show Gist options
  • Save aptiko/21fa6dc8341266d97d080891b8b7bcd3 to your computer and use it in GitHub Desktop.
Save aptiko/21fa6dc8341266d97d080891b8b7bcd3 to your computer and use it in GitHub Desktop.
Vue plugin essentials
import Vue from 'vue'
const myVuePlugin = {
install(Vue, options) {
Vue.prototype.$hello = 'world'
},
}
Vue.use(myVuePlugin)
myVueInstance = new Vue()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment