import { Result } from 'antd' import useAuthStore from '@/stores/Auth' export default function RequireAuth({ children, ...props }, ) { const isPermitted = useAuthStore((state) => state.isPermitted) if (isPermitted(props.subject)) { // if (props.subject === '/account/management') { return children } else if (props.result) { return ( ) } }