Skip to content

Commit

Permalink
fix(www): use refDebounced
Browse files Browse the repository at this point in the history
  • Loading branch information
luxass committed Jul 18, 2024
1 parent 0a0efc0 commit 08ab474
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/www/app/pages/index.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script setup lang="ts">
const text = ref("Write your article here!");
const debounced = useDebounce(text, 500);
const debounced = refDebounced(text, 1000);
</script>

<template>
Expand Down

0 comments on commit 08ab474

Please sign in to comment.