Vue interface for working with Unleash
npm install @unleash/proxy-client-vueUnleash is a private, secure, and scalable feature management platform built to reduce the risk of releasing new features and accelerate software development. This Frontend Vue SDK is designed to help you integrate with Unleash and evaluate feature flags inside your application.
You can use this client with Unleash Enterprise or Unleash Open Source.
This library is meant to be used with Unleash Edge or the Unleash front-end API.
It is not compatible with the Unleash client API.
``bash`
npm install @unleash/proxy-client-vueor
yarn add @unleash/proxy-client-vue
`jsx
import { createApp } from 'vue'
import { plugin as unleashPlugin } from '@unleash/proxy-client-vue'
// import the root component App from a single-file component.
import App from './App.vue'
const config = {
url: 'https://HOSTNAME/api/frontend',
clientKey: 'FRONTEND_TOKEN',
refreshInterval: 15,
appName: 'your-app-name',
}
const app = createApp(App)
app.use(unleashPlugin, { config })
app.mount('#app')
`
Or use the FlagProvider component like this in your entrypoint file (typically App.vue):
`jsx
import { FlagProvider } from '@unleash/proxy-client-vue'
const config = {
url: 'https://UNLEASH-INSTANCE/api/frontend',
clientKey: 'CLIENT—SIDE—API—TOKEN',
refreshInterval: 15,
appName: 'your-app-name',
}
`
`jsx
import { createApp } from 'vue'
import { plugin as unleashPlugin } from '@unleash/proxy-client-vue'
// import the root component App from a single-file component.
import App from './App.vue'
const config = {
url: 'https://HOSTNAME/api/frontend',
clientKey: 'FRONTEND_TOKEN',
refreshInterval: 15,
appName: 'your-app-name',
}
const client = new UnleashClient(config)
const app = createApp(App)
app.use(unleashPlugin, { unleashClient: client })
app.mount('#app')
`
Or, using FlagProvider:
`jsx
import { FlagProvider, UnleashClient } from '@unleash/proxy-client-vue'
const config = {
url: 'https://UNLEASH-INSTANCE/api/frontend',
clientKey: 'FRONTEND_TOKEN',
refreshInterval: 15,
appName: 'your-app-name',
}
const client = new UnleashClient(config)
`
By default, the Unleash client will start polling for toggles immediately when the FlagProvider component renders. You can delay the polling by:
- setting the startClient prop to falseFlagProvider
- passing a client instance to the
`jsx`
Deferring the client start gives you more fine-grained control over when to start fetching the feature toggle configuration. This could be handy in cases where you need to get some other context data from the server before fetching toggles, for instance.
To start the client, use the client's start method. The below snippet of pseudocode will defer polling until the end of the asyncProcess function.
`jsx
const client = new UnleashClient({
/ ... /
})
onMounted(() => {
const asyncProcess = async () => {
// do async work ...
client.start()
}
asyncProcess()
})
`
To check if a feature is enabled:
`jsx
`
To check variants:
`jsx
`
useFlagsStatus retrieves the ready state and error events.
Follow the following steps in order to delay rendering until the flags have been fetched.
`jsx
import { useFlagsStatus } from '@unleash/proxy-client-vue'
const { flagsReady, flagsError } = useFlagsStatus()
`
Follow the following steps in order to update the unleash context:
`jsx
import { useUnleashContext, useFlag } from '@unleash/proxy-client-vue'
const props = defineProps<{
userId: string
}>()
const { userId } = toRefs(props)
const updateContext = useUnleashContext()
onMounted(() => {
updateContext({ userId })
})
watch(userId, () => {
async function run() {
await updateContext({ userId: userId.value })
console.log('new flags loaded for', userId.value)
}
run()
})
``