From 46c253b964e0a8441d9112a5aabe31ca394e1f95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nuno=20G=C3=B3is?= Date: Fri, 20 May 2022 10:22:14 +0100 Subject: [PATCH] docs: use named export instead of default (#1614) --- website/docs/sdks/proxy-vue.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/docs/sdks/proxy-vue.md b/website/docs/sdks/proxy-vue.md index 4ceb737714..21561f6313 100644 --- a/website/docs/sdks/proxy-vue.md +++ b/website/docs/sdks/proxy-vue.md @@ -23,7 +23,7 @@ npm install @unleash/proxy-client-vue Import the provider like this in your entrypoint file (typically App.vue): ```jsx -import FlagProvider from '@unleash/proxy-client-vue' +import { FlagProvider } from '@unleash/proxy-client-vue' const config = { url: 'https://HOSTNAME/proxy', @@ -43,7 +43,7 @@ const config = { Alternatively, you can pass your own client in to the FlagProvider: ```jsx -import FlagProvider, { UnleashClient } from '@unleash/proxy-client-vue' +import { FlagProvider, UnleashClient } from '@unleash/proxy-client-vue' const config = { url: 'https://HOSTNAME/proxy',