From 71e4d956a8bb70787de5118ea4f8c7760d86b557 Mon Sep 17 00:00:00 2001 From: John <1719221+robokozo@users.noreply.github.com> Date: Tue, 3 Jan 2023 06:42:09 -0800 Subject: [PATCH] Fixed the example code to match description --- pages/accessibility/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/accessibility/index.vue b/pages/accessibility/index.vue index 32ae81358..614795731 100644 --- a/pages/accessibility/index.vue +++ b/pages/accessibility/index.vue @@ -81,7 +81,7 @@
On the other hand, a fancy css based button using a div has no keyboard or screen reader support.
-<button class="fancy-button" @click="onButtonClick(event)">Click</button>
+<div class="fancy-button" @click="onButtonClick(event)">Click</div>