Files
2026-07-23 10:43:59 +08:00

16 lines
273 B
TypeScript

import createAxios from "@/utils/request";
interface WebInfo {
title: string;
subtitle: string;
describe: string;
logo: string;
}
export const getWebInfo = () => {
return createAxios<WebInfo>({
url: "/index",
method: "get",
});
};