import config from "@/config"; import http from "@/utils/request"; export default { data: { url: `${config.API_URL}/store/detail/data`, name: "-", get: async function (data = {}) { return await http.get(this.url, data); } }, };