We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 475dae5 commit 9f37ca0Copy full SHA for 9f37ca0
.github/workflows/ci.yml
@@ -40,6 +40,3 @@ jobs:
40
41
- name: Playground prepare
42
run: npm run dev:prepare
43
-
44
- - name: Test
45
- run: npm run test
playground/app.vue
@@ -1,7 +1,9 @@
1
<template>
2
<div>
3
<h1>Nuxt iOS WebKit Active CSS Pseudo</h1>
4
- <button @click="onClick">Button</button>
+ <button @click="onClick">
5
+ Button
6
+ </button>
7
</div>
8
</template>
9
src/runtime/plugin.ts
@@ -1,3 +1,3 @@
import { defineNuxtPlugin } from '#app'
-export default defineNuxtPlugin(() => document.addEventListener('touchstart', () => {}, { passive: true }))
+export default defineNuxtPlugin(() => document.addEventListener('touchstart', () => {}, { passive: true }))
0 commit comments