动态菜单和动态路由的 antd pro

authority.js 308B

123456789
  1. // use localStorage to store the authority info, which might be sent from server in actual project.
  2. export function getAuthority() {
  3. return localStorage.getItem('antd-pro-authority') || 'admin';
  4. }
  5. export function setAuthority(authority) {
  6. return localStorage.setItem('antd-pro-authority', authority);
  7. }