From e3c1e3dd0de76edc4d1bb326071cc45270ed5f69 Mon Sep 17 00:00:00 2001 From: Chavez Harris <74829200+codedbychavez@users.noreply.github.com> Date: Fri, 10 Jul 2026 10:32:06 -0400 Subject: [PATCH 1/2] Fix: wrong pollInterval property. --- website/docs/sdk-reference/community/vue.mdx | 4 ++-- .../versioned_docs/version-V1/sdk-reference/community/vue.mdx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/website/docs/sdk-reference/community/vue.mdx b/website/docs/sdk-reference/community/vue.mdx index 541a6ef0a..e8f4203a7 100644 --- a/website/docs/sdk-reference/community/vue.mdx +++ b/website/docs/sdk-reference/community/vue.mdx @@ -91,7 +91,7 @@ Optionally, the `FeatureWrapper` component also provides an `#else` and `#loadin ### Specifying a polling mode -Polling modes are used to control how often ConfigCat's SDK client downloads the values of feature flags from ConfigCat's servers. The default polling mode is `AutoPoll`. Auto Polling fetches the latest feature flag values every 60 seconds by default. To change this, Specify a polling mode and set the polling interval (in seconds) via the `pollingIntervalInSeconds` property. +Polling modes are used to control how often ConfigCat's SDK client downloads the values of feature flags from ConfigCat's servers. The default polling mode is `AutoPoll`. Auto Polling fetches the latest feature flag values every 60 seconds by default. To change this, Specify a polling mode and set the polling interval (in seconds) via the `pollIntervalSeconds` property. Import: @@ -103,7 +103,7 @@ Add `pollingMode` to the `ConfigCatPlugin` options and set the polling interval ```js app.use(ConfigCatPlugin, { - sdkKey: "YOUR-CONFIGCAT-SDKKEY-GOES-HERE", + sdkKey: "YOUR-CONFIGCAT-SDK-KEY-GOES-HERE", pollingMode: PollingMode.AutoPoll, // Optional. Default is AutoPoll clientOptions: { pollIntervalSeconds: 5 // Optional. Specify the polling interval in seconds. The default is 60 seconds. diff --git a/website/versioned_docs/version-V1/sdk-reference/community/vue.mdx b/website/versioned_docs/version-V1/sdk-reference/community/vue.mdx index b43e070de..a99412bc9 100644 --- a/website/versioned_docs/version-V1/sdk-reference/community/vue.mdx +++ b/website/versioned_docs/version-V1/sdk-reference/community/vue.mdx @@ -91,7 +91,7 @@ Optionally, the `FeatureWrapper` component also provides an `#else` and `#loadin ### Specifying a polling mode -Polling modes are used to control how often ConfigCat's SDK client downloads the values of feature flags from ConfigCat's servers. The default polling mode is `AutoPoll`. Auto Polling fetches the latest feature flag values every 60 seconds by default. To change this, Specify a polling mode and set the polling interval (in seconds) via the `pollingIntervalInSeconds` property. +Polling modes are used to control how often ConfigCat's SDK client downloads the values of feature flags from ConfigCat's servers. The default polling mode is `AutoPoll`. Auto Polling fetches the latest feature flag values every 60 seconds by default. To change this, Specify a polling mode and set the polling interval (in seconds) via the `pollIntervalSeconds` property. Import: @@ -103,7 +103,7 @@ Add `pollingMode` to the `ConfigCatPlugin` options and set the polling interval ```js app.use(ConfigCatPlugin, { - sdkKey: "YOUR-CONFIGCAT-SDKKEY-GOES-HERE", + sdkKey: "YOUR-CONFIGCAT-SDK-KEY-GOES-HERE", pollingMode: PollingMode.AutoPoll, // Optional. Default is AutoPoll clientOptions: { pollIntervalSeconds: 5 // Optional. Specify the polling interval in seconds. The default is 60 seconds. From 3f2adff46598fa21319aea0cd3a70beb4f6cef32 Mon Sep 17 00:00:00 2001 From: Chavez Harris <74829200+codedbychavez@users.noreply.github.com> Date: Fri, 10 Jul 2026 10:40:00 -0400 Subject: [PATCH 2/2] Fix: Additional mistakes --- website/docs/sdk-reference/community/vue.mdx | 6 +++--- .../version-V1/sdk-reference/community/vue.mdx | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/website/docs/sdk-reference/community/vue.mdx b/website/docs/sdk-reference/community/vue.mdx index e8f4203a7..d2f0ca97b 100644 --- a/website/docs/sdk-reference/community/vue.mdx +++ b/website/docs/sdk-reference/community/vue.mdx @@ -9,7 +9,7 @@ export const VueSchema = require('@site/src/schema-markup/sdk-reference/communit :::caution -As this is a community-maintained package, ConfigCat can't guarantee its stability, and safety and can't provide official customer support. +As this is a community-maintained package, ConfigCat can't guarantee its stability and safety, and can't provide official customer support. ::: ConfigCat SDK for Vue.js on GitHub @@ -121,7 +121,7 @@ You may want to log the actions of the underlying ConfigCat SDK client. To do th > See documentation [here](../js/browser.mdx#logging). -Add `createConsoleLogger`, and `LoggerLevel` to your import: +Add `createConsoleLogger`, and `LogLevel` to your import: ```js import { createConsoleLogger, LogLevel } from "configcat-vue"; @@ -135,7 +135,7 @@ Use the logger in `clientOptions`: ```js app.use(ConfigCatPlugin, { - sdkKey: "YOUR-CONFIGCAT-SDK-KEY-GOES-HERE", // // sdkKey is required + sdkKey: "YOUR-CONFIGCAT-SDK-KEY-GOES-HERE", // sdkKey is required clientOptions: { // clientOptions is optional // ... logger: createConsoleLogger(LogLevel.Info), diff --git a/website/versioned_docs/version-V1/sdk-reference/community/vue.mdx b/website/versioned_docs/version-V1/sdk-reference/community/vue.mdx index a99412bc9..2352eb192 100644 --- a/website/versioned_docs/version-V1/sdk-reference/community/vue.mdx +++ b/website/versioned_docs/version-V1/sdk-reference/community/vue.mdx @@ -9,7 +9,7 @@ export const VueSchema = require('@site/src/schema-markup/sdk-reference/communit :::caution -As this is a community-maintained package, ConfigCat can't guarantee its stability, and safety and can't provide official customer support. +As this is a community-maintained package, ConfigCat can't guarantee its stability and safety, and can't provide official customer support. ::: ConfigCat SDK for Vue.js on GitHub @@ -121,7 +121,7 @@ You may want to log the actions of the underlying ConfigCat SDK client. To do th > See documentation [here](../js.mdx#logging). -Add `createConsoleLogger`, and `LoggerLevel` to your import: +Add `createConsoleLogger`, and `LogLevel` to your import: ```js import { createConsoleLogger, LogLevel } from "configcat-vue"; @@ -135,7 +135,7 @@ Use the logger in `clientOptions`: ```js app.use(ConfigCatPlugin, { - sdkKey: "YOUR-CONFIGCAT-SDK-KEY-GOES-HERE", // // sdkKey is required + sdkKey: "YOUR-CONFIGCAT-SDK-KEY-GOES-HERE", // sdkKey is required clientOptions: { // clientOptions is optional // ... logger: createConsoleLogger(LogLevel.Info),