Skip to content

Commit 7dd686c

Browse files
committed
Remove unused lodash dep
1 parent e3f5a78 commit 7dd686c

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

pages/publications.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ aside: false
44

55
<script setup>
66
import { ref, onMounted, computed, watch } from 'vue'
7-
import debounce from 'lodash.debounce'
87

98
const SORT_OPTIONS = {
109
sort: ["year", "author", "title", "conference"],
@@ -83,10 +82,6 @@ onMounted(async () => {
8382
const response = await fetch('/assets/publications.json')
8483
publications.value = await response.json()
8584
})
86-
87-
watch(search, debounce(() => {
88-
89-
}, 500))
9085
</script>
9186

9287
<style>

0 commit comments

Comments
 (0)