mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
11 lines
347 B
TypeScript
11 lines
347 B
TypeScript
import { CustomNavbarItemInit } from '../custom-navbar-item'
|
|
|
|
export const search: CustomNavbarItemInit = {
|
|
name: 'search',
|
|
displayName: '搜索',
|
|
content: () => import('./NavbarSearch.vue').then(m => m.default),
|
|
|
|
// 禁用元素本身的 hover 效果之类的, 作为 content 的 NavbarSearch 是依然能够响应的
|
|
disabled: true,
|
|
}
|