📜  使用 nuxt 在 vue 上添加原型 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:46.608000             🧑  作者: Mango

代码示例1
// create in plugins/hello
export default ({ app }, inject) => {
  // Inject $hello(msg) in Vue, context and store.
  inject('hello', msg => console.log(`Hello ${msg}!`))
}

// add in nuxt.config.js
export default {
  plugins: ['~/plugins/hello.js']
}