将行业热门话题洞察的需要修改成columns
This commit is contained in:
5
src/utils/helper.ts
Normal file
5
src/utils/helper.ts
Normal file
@ -0,0 +1,5 @@
|
||||
export function getQueryParam(param: string): string | null {
|
||||
const search = window.location.search || window.location.hash.split('?')[1] || '';
|
||||
const params = new URLSearchParams(search);
|
||||
return params.get(param);
|
||||
}
|
||||
Reference in New Issue
Block a user