web/frps: redesign frps dashboard with sidebar nav, responsive layout, and shared component workspace

This commit is contained in:
fatedier
2026-03-20 03:25:25 +08:00
parent 6cdef90113
commit f56f381799
38 changed files with 1484 additions and 8548 deletions

View File

@@ -0,0 +1,8 @@
import { useBreakpoints } from '@vueuse/core'
const breakpoints = useBreakpoints({ mobile: 0, desktop: 768 })
export function useResponsive() {
const isMobile = breakpoints.smaller('desktop') // < 768px
return { isMobile }
}