10 lines
252 B
TypeScript
10 lines
252 B
TypeScript
import Authenticationbtn from "@/components/Authenticationbtn";
|
|
import { Button } from "antd";
|
|
|
|
export default function Home() {
|
|
return(
|
|
<Authenticationbtn permission="['system:list']">
|
|
<Button>测试</Button>
|
|
</Authenticationbtn>
|
|
)
|
|
} |