wangzhibo
2026-07-16 b57020623cf0c946706573bf102e548c3a544423
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { getCurrentInstance } from "vue";
import { useConfig } from "../../../hooks";
import { uniqueFns } from "../../../utils";
 
export function usePlugins() {
    const that: any = getCurrentInstance();
    const { style } = useConfig();
 
    // 插件创建
    function create(plugins: ClSearch.Plugin[] = []) {
        uniqueFns([...(style.search?.plugins || []), ...plugins]).forEach((p) => {
            p({
                exposed: that.exposed
            });
        });
    }
 
    return {
        create
    };
}