mirror of
https://github.com/algerkong/AlgerMusicPlayer.git
synced 2026-04-15 07:20:49 +08:00
10 lines
243 B
TypeScript
10 lines
243 B
TypeScript
import request from "@/utils/request"
|
|
import { ISearchDetail } from "@/type/search"
|
|
|
|
// 搜索内容
|
|
export const getSearch = (keywords: any) => {
|
|
return request.get<any>("/cloudsearch", {
|
|
params: { keywords: keywords, type: 1 },
|
|
})
|
|
}
|