We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a71f444 commit f7122d9Copy full SHA for f7122d9
docs/guide/options.md
@@ -19,13 +19,27 @@ Vue.use(VueAxe, {
19
To check manually, use [$axe.run](/guide/api.html#run)
20
:::
21
22
+## allowConsoleClears
23
+
24
+| Type | Default |
25
+| -------- | -------- |
26
+| Boolean | `true` |
27
28
+If false, disables all console clears (overriding `clearConsoleOnUpdate`).
29
30
+```js
31
+Vue.use(VueAxe, {
32
+ allowConsoleClears: false // disable all console clears
33
+})
34
+```
35
36
## clearConsoleOnUpdate
37
38
| Type | Default |
39
| -------- | -------- |
40
| Boolean | `false` |
41
-If true, clean the console each time the component is updated.
42
+If true, clean the console each time the component is updated. No effect if `allowConsoleClears = false`.
43
44
```js
45
Vue.use(VueAxe, {
0 commit comments