You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As this is a community-maintained package, ConfigCat can't guarantee its stability, and safety and can't provide official customer support.
12
+
As this is a community-maintained package, ConfigCat can't guarantee its stability and safety, and can't provide official customer support.
13
13
:::
14
14
15
15
<ahref="https://github.com/codedbychavez/configcat-vue"target="_blank">ConfigCat SDK for Vue.js on GitHub</a>
@@ -91,7 +91,7 @@ Optionally, the `FeatureWrapper` component also provides an `#else` and `#loadin
91
91
92
92
### Specifying a polling mode
93
93
94
-
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.
94
+
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.
95
95
96
96
Import:
97
97
@@ -103,7 +103,7 @@ Add `pollingMode` to the `ConfigCatPlugin` options and set the polling interval
103
103
104
104
```js
105
105
app.use(ConfigCatPlugin, {
106
-
sdkKey:"YOUR-CONFIGCAT-SDKKEY-GOES-HERE",
106
+
sdkKey:"YOUR-CONFIGCAT-SDK-KEY-GOES-HERE",
107
107
pollingMode:PollingMode.AutoPoll, // Optional. Default is AutoPoll
108
108
clientOptions: {
109
109
pollIntervalSeconds:5// Optional. Specify the polling interval in seconds. The default is 60 seconds.
@@ -121,7 +121,7 @@ You may want to log the actions of the underlying ConfigCat SDK client. To do th
121
121
122
122
> See documentation [here](../js/browser.mdx#logging).
123
123
124
-
Add `createConsoleLogger`, and `LoggerLevel` to your import:
124
+
Add `createConsoleLogger`, and `LogLevel` to your import:
As this is a community-maintained package, ConfigCat can't guarantee its stability, and safety and can't provide official customer support.
12
+
As this is a community-maintained package, ConfigCat can't guarantee its stability and safety, and can't provide official customer support.
13
13
:::
14
14
15
15
<ahref="https://github.com/codedbychavez/configcat-vue"target="_blank">ConfigCat SDK for Vue.js on GitHub</a>
@@ -91,7 +91,7 @@ Optionally, the `FeatureWrapper` component also provides an `#else` and `#loadin
91
91
92
92
### Specifying a polling mode
93
93
94
-
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.
94
+
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.
95
95
96
96
Import:
97
97
@@ -103,7 +103,7 @@ Add `pollingMode` to the `ConfigCatPlugin` options and set the polling interval
103
103
104
104
```js
105
105
app.use(ConfigCatPlugin, {
106
-
sdkKey:"YOUR-CONFIGCAT-SDKKEY-GOES-HERE",
106
+
sdkKey:"YOUR-CONFIGCAT-SDK-KEY-GOES-HERE",
107
107
pollingMode:PollingMode.AutoPoll, // Optional. Default is AutoPoll
108
108
clientOptions: {
109
109
pollIntervalSeconds:5// Optional. Specify the polling interval in seconds. The default is 60 seconds.
@@ -121,7 +121,7 @@ You may want to log the actions of the underlying ConfigCat SDK client. To do th
121
121
122
122
> See documentation [here](../js.mdx#logging).
123
123
124
-
Add `createConsoleLogger`, and `LoggerLevel` to your import:
124
+
Add `createConsoleLogger`, and `LogLevel` to your import:
0 commit comments