GithubHelp home page GithubHelp logo

vue-config's Introduction

vue-configuration

A static config plugin.

Installation

Add package

yarn add vue-configuration

# or via npm:
npm i vue-configuration

Install plugin

import Vue from 'vue';
import VueConfig from 'vue-configuration';
import appConfig from './config.js';

// pass config object to the plugin
Vue.use(VueConfig, {
    config: appConfig
});

Usage

Access config values in any part of app using simple API:

this.$config.get('node');

Use dot-notation for keys:

this.$config.get('node.child.leaf');

Default values if value not set:

this.$config.get('node.child.leaf.empty', 'default');

Replace config:

this.$config.replace({ new: 'data' });

Test if path exists:

// obj = { a: 1 }
this.$config.has('a.b.c'); // false
this.$config.has('a'); // true

Get config object:

this.$config.all();

Example

config.js

export default {
    facebook: {
        apiToken: 'abc',
        clientSecret: 'topsecret'
    },
    allowRegistration: true
};

Get node:

this.$config.get('facebook');
// { apiToken: 'abc', clientSecret: 'topsecret' }

Read Facebook's API token in component:

this.$config.get('facebook.apiToken');
// 'abc'

Test if registration is open:

this.$config.get('allowRegistration');
// true

Test if login is available:

this.$config.get('allowLogin', false);
// oops, not defined! return "false" as default

vue-config's People

Contributors

alex-oleshkevich avatar wesseloh-as avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

vue-config's Issues

how to access configuration without 'this'

Hello,

I am new to vuejs. "this" is not accessible in "beforeRouteEnter" function so I could not access configuration there. I can not find anything about it in documentation.

All examples in documentation use "this.$config". A sample showing how to access configuration when "this" was not available would be helpful.

thank you.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.