Skip to content

Instantly share code, notes, and snippets.

@sudhir600
Last active February 22, 2019 09:51
Show Gist options
  • Save sudhir600/4ba10a1e70ff96bab5fba95466195039 to your computer and use it in GitHub Desktop.
Save sudhir600/4ba10a1e70ff96bab5fba95466195039 to your computer and use it in GitHub Desktop.
global settings in nuxt vuejs
global.$s = require('../settings.json')
if(!process.server){
Object.defineProperty(Vue.prototype, '$s', { value: $s })
}
#uses
/*created(){
var a = $s['key']
}
or in html
<span>{{ $s['key']}}</span>*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment