16 lines
273 B
TypeScript
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",
|
|
});
|
|
};
|