Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
sxzz committed Jul 4, 2022
1 parent 6b9cca0 commit 6ece886
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .eslintignore
Expand Up @@ -2,3 +2,5 @@ node_modules
dist
pnpm-lock.yaml
tests/fixtures
auto-import.d.ts
components.d.ts
2 changes: 2 additions & 0 deletions .prettierignore
@@ -1,3 +1,5 @@
node_modules
dist
pnpm-lock.yaml
auto-import.d.ts
components.d.ts
4 changes: 3 additions & 1 deletion playground/src/components/code-input.vue
Expand Up @@ -19,6 +19,8 @@ defineEmits<{
bg="transparent"
border="~ rounded gray-200 dark:gray-700"
outline="none active:none"
@input="$emit('update:modelValue', ($event.target as HTMLTextAreaElement).value)"
@input="
$emit('update:modelValue', ($event.target as HTMLTextAreaElement).value)
"
/>
</template>

0 comments on commit 6ece886

Please sign in to comment.