Merge branch 'preview-fixes' of https://github.com/the1812/Bilibili-Evolved into preview-features

This commit is contained in:
the1812 2024-05-10 08:49:02 +08:00
commit 36fce218ec

View File

@ -26,11 +26,13 @@ export const searchProvider: LaunchBarActionProvider = {
content: async () =>
Vue.extend({
render: h => {
const content = h('div', {
domProps: {
innerHTML: /* html */ `<em class="suggest-highlight">${input}</em>`,
const content = h(
'div',
{
class: 'suggest-highlight',
},
})
[input],
)
return content
},
}),