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
<p>Each time the number updates it's running a debounce function to call `axe-core` again.<br />It will only run run the debounce once per 5 seconds or 1 second after the last call.</p>
16
+
<p>Use this button to see the console update as you fix or break a11y rules.</p>
17
+
<buttonv-if="!showAlt"@click="toggleLogoAltTag">Add an alt tag to the logo</button>
18
+
<buttonv-else@click="toggleLogoAltTag">Remove the alt tag from the logo</button>
16
19
</div>
17
20
</template>
18
21
@@ -27,7 +30,8 @@
27
30
data () {
28
31
return {
29
32
msg:'Welcome - Open your console',
30
-
num:0
33
+
num:0,
34
+
showAlt:false
31
35
}
32
36
},
33
37
mounted()
@@ -41,6 +45,11 @@
41
45
this.num+=1;
42
46
this.updateNumber();
43
47
}, 500);
48
+
},
49
+
toggleLogoAltTag()
50
+
{
51
+
this.showAlt=!this.showAlt
52
+
console.log('Wait for Axe to run again in 5 seconds')
0 commit comments