Files
mini-yu/uni_modules/tdesign-uniapp/components/search/computed.js
lingxiao865 c5af079d8c first commit
2026-02-10 08:05:03 +08:00

4 lines
157 B
JavaScript

export const highLight = function (label, keyword) {
return label.replace(keyword, `<span class="t-search__result-item--highLight">${keyword}</span>`);
};