moving routing to web

This commit is contained in:
Geriano
2022-10-30 19:05:29 +07:00
parent 9a7a0d504f
commit 80555c27a9
8 changed files with 19 additions and 22 deletions

View File

@@ -13,7 +13,7 @@ const { user } = usePage().props.value
const f = async () => {
try {
const response = await axios.get(route('api.v1.user.menu', user.id))
const response = await axios.get(route('user.menu', user.id))
menus.value = response.data
} catch (e) {