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 6b9cca0 commit 6ece886Copy full SHA for 6ece886
.eslintignore
@@ -2,3 +2,5 @@ node_modules
2
dist
3
pnpm-lock.yaml
4
tests/fixtures
5
+auto-import.d.ts
6
+components.d.ts
.prettierignore
@@ -1,3 +1,5 @@
1
node_modules
playground/src/components/code-input.vue
@@ -19,6 +19,8 @@ defineEmits<{
19
bg="transparent"
20
border="~ rounded gray-200 dark:gray-700"
21
outline="none active:none"
22
- @input="$emit('update:modelValue', ($event.target as HTMLTextAreaElement).value)"
+ @input="
23
+ $emit('update:modelValue', ($event.target as HTMLTextAreaElement).value)
24
+ "
25
/>
26
</template>
0 commit comments