We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb28e00 commit 77118a4Copy full SHA for 77118a4
src/guide/built-ins/transition-demos/ListStagger.vue
@@ -13,7 +13,7 @@ const list = [
13
const query = ref('')
14
15
const computedList = computed(() => {
16
- return list.filter((item) => item.msg.toLowerCase().includes(query.value))
+ return list.filter((item) => item.msg.toLowerCase().includes(query.value.toLowerCase()))
17
})
18
19
function onBeforeEnter(el) {
0 commit comments