A Vue plugin for Unleash.
Vue Unleash provides an integration for Vue and the Unleash open-source feature flag platform.
This plugin requires that your project use Vuex
yarn add -D vue-unleash
# or
npm i -D vue-unleash
import Vue from 'vue';
import VueUnleash from 'vue-unleash';
import Vuex from 'vuex';
Vue.use(Vuex);
const store = new Vuex.Store({});
/**
* The <unleash-feature /> component is registered
* globally during installation.
*/
Vue.use(VueUnleash, {
// Optional, name of app
appName: 'MyVueApp',
// Optional, instance id of app
instanceId: 'my-vue-app-1',
// Required, Unleash instance host
host: 'https://my-hosted-unleash.io',
// Optional, prefix to filter features by via the Unleash API
// https://unleash.github.io/docs/api/client/features
namePrefix: 'MyVueApp',
// Required
store,
// Optional, providers to handle strategy logic
strategyProviders: {
/**
* Example strategy provider
*
* @param {object} parameters Strategy parameters object from Unleash API
* @return {boolean} If enabled or not
*/
applicationHostname(parameters) {
const { hostNames } = parameters;
return hostNames.split(',').includes('vue-unleash.io');
}
}
});
<template>
<unleash-feature name="MyVueApp.AddUser">
<add-user-form />
</unleash-feature>
</template>
export default {
mounted() {
// Get all features
console.log(this.$store.state.unleash.features);
// Get enabled state of all features
console.log(this.$store.state.unleash.enabledFeatures);
// Get weather initial loading is occurring
console.log(this.$store.state.unleash.loading);
// Re-fetch data
this.$store.dispatch('unleash/fetch');
}
};
yarn lint
yarn test
yarn build
- Fork the repository
- Create a new branch for each feature or improvement
- Send a pull request from each feature branch to the develop branch