12345678910111213 |
- import http from '@/lib/http'
- const settings = {
- get() {
- return http.get('/settings')
- },
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
- save(data: any) {
- return http.post('/settings', data)
- },
- }
- export default settings
|