我使用Vuetify数据表组件,在进行搜索时希望忽略特殊字符。例如,在我的表中,我有一个波兰名字";Łukasz";,并且当我键入";卢卡斯";。有可能吗?感谢
我找到了一个解决方案:在我的对象中,我添加了一个值,该值使用latinize.js模块将原始名称和没有特殊字符的名称连接起来:
import latinize from 'latinize';
Person.searchLastName = Person.LastName + ' ' + latinize(Person.LastName);
在headers对象中,我使用我的新值,但我添加了一个模板,用原始值替换这些内容,如下所示:
<template #[`item.Person.searchLastName`]="{ item }">
<!-- use different value to allow search without special chars -->
{{item.Person.LastName}}
</template>