mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-24 06:35:10 +00:00
13 lines
196 B
JavaScript
13 lines
196 B
JavaScript
|
import Vue from 'vue'
|
||
|
|
||
|
const Plugin = {
|
||
|
install(Vue) {
|
||
|
Vue.mixin({
|
||
|
created() {
|
||
|
console.log('I am mixin') // eslint-disable-line no-console
|
||
|
}
|
||
|
})
|
||
|
}
|
||
|
}
|
||
|
Vue.use(Plugin)
|