Merge pull request #3480 from robokozo/patch-1

Fixed the example code to match description
pull/3518/head^2
Tuğçe Küçükoğlu 2023-01-10 09:53:05 +03:00 committed by GitHub
commit eb13bb1729
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@
<p>On the other hand, a fancy css based button using a div has no keyboard or screen reader support.</p>
<pre v-code.script><code>
&lt;button class="fancy-button" @click="onButtonClick(event)"&gt;Click&lt;/button&gt;
&lt;div class="fancy-button" @click="onButtonClick(event)"&gt;Click&lt;/div&gt;
</code></pre>