Files
2026-07-13 15:23:29 +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",
});
};