vue-global-options

1.0.1 • Public • Published

vue-global-options

Make specified options you pass into your root component available on all your child components

Usage

npm install vue-global-options
import GlobalOptions from 'vue-global-options';
Vue.use(GlobalOptions, ['api', 'config']);
 
new Vue({
  ...
  api: apiClient,
  config: require('./config')
  ...
});
 
// Params named `$api` and `$config` will be injected in to every component, so in your component, you can get them easily
this.$api.get(...);
this.$config.whatever;

Warning

This plugin does not check for any collision or prevent you from using reserved words, it simply will take specified options passed to the root component (or any component) and set them as this.$VARIABLE.

Readme

Keywords

Package Sidebar

Install

npm i vue-global-options

Weekly Downloads

30

Version

1.0.1

License

ISC

Last publish

Collaborators

  • benirose
  • mkopinsky