Skip to content

Commit 77118a4

Browse files
authored
fix: non-case sensitive filtering
1 parent cb28e00 commit 77118a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/guide/built-ins/transition-demos/ListStagger.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const list = [
1313
const query = ref('')
1414
1515
const computedList = computed(() => {
16-
return list.filter((item) => item.msg.toLowerCase().includes(query.value))
16+
return list.filter((item) => item.msg.toLowerCase().includes(query.value.toLowerCase()))
1717
})
1818
1919
function onBeforeEnter(el) {

0 commit comments

Comments
 (0)