支持 template 模板 list 模式

This commit is contained in:
muwoo
2021-12-17 17:59:07 +08:00
parent 8bcc5d409c
commit ef33ff0a3d
9 changed files with 56 additions and 13 deletions

View File

@@ -32,4 +32,11 @@ export default {
const res = await axios.get(url);
return res.data;
},
async getSearchDetail(url: string) {
const res = await axios.get(
"https://gitee.com/monkeyWang/rubick-database/raw/master/plugins/search.json"
);
return res.data;
},
};