Nuxt Inject Global Helper Functions or Variables
February 20, 2020Combined Inject
https://nuxtjs.org/guide/plugins/#combined-inject
Edit nuxt.config.js
.
export default {
plugins: ['~/plugins/inject.js']
}
Edit ~/plugins/inject.js
You can create an object to hold functions or variables.
const test = {
name: 'Test'
ping() {
console.log('Ping')
}
}
export default ({ app }, inject) => {
inject('test', test)
}
Access object in components
export default {
mounted () {
this.$test.ping()
},
/*
// context - https://nuxtjs.org/api/context/
asyncData (context) {
console.log(context.app.$test.name)
}
*/
// access context via destructuring assignment
asyncData ({ app }) {
console.log(app.$test.name)
},
}
Access object in plugins
export default ({ app }) => {
app.$test.ping()
console.log(app.$test.name)
}
Access object in store.
export const state = () => ({
testName: null
})
export const mutations = {
updateTestName(state, value) {
state.testName = `${this.$test.name}: ${value}`
},
}
export const actions = {
testPing({ commit }) {
this.$test.ping()
commit('updateTestName', 'ping')
},
}
Vue.prototype
You can use Vue.prototype
if you need the object accessiable via components but not nuxt context.
Edit ~/plugins/inject.js
const test = {
name: 'Test'
ping() {
console.log('Ping')
}
}
Vue.prototype.$test = test
Vue mixins
- algo-trading
- algolia
- analytics
- android
- android-ktx
- android-permission
- android-studio
- apps-script
- bash
- binance
- bootstrap
- bootstrapvue
- chartjs
- chrome
- cloud-functions
- coding-interview
- contentresolver
- coroutines
- crashlytics
- crypto
- css
- dagger2
- datastore
- datetime
- docker
- eslint
- firebase
- firebase-auth
- firebase-hosting
- firestore
- firestore-security-rules
- flask
- fontawesome
- fresco
- git
- github
- glide
- godot
- google-app-engine
- google-cloud-storage
- google-colab
- google-drive
- google-maps
- google-places
- google-play
- google-sheets
- gradle
- html
- hugo
- inkscape
- java
- java-time
- javascript
- jetpack-compose
- jetson-nano
- kotlin
- kotlin-serialization
- layout
- lets-encrypt
- lifecycle
- linux
- logging
- lubuntu
- markdown
- mate
- material-design
- matplotlib
- md5
- mongodb
- moshi
- mplfinance
- mysql
- navigation
- nginx
- nodejs
- npm
- nuxtjs
- nvm
- pandas
- payment
- pip
- pwa
- pyenv
- python
- recylerview
- regex
- room
- rxjava
- scoped-storage
- selenium
- social-media
- ssh
- ssl
- static-site-generator
- static-website-hosting
- sublime-text
- ubuntu
- unit-test
- uwsgi
- viewmodel
- viewpager2
- virtualbox
- vue-chartjs
- vue-cli
- vue-router
- vuejs
- vuelidate
- vuepress
- web-development
- web-hosting
- webpack
- windows
- workmanager
- wsl
- yarn