Hidden API
导入
import Hidden from '@mui/material/Hidden';
// 或
import { Hidden } from '@mui/material';
根据选定的实现方式隐藏子控件。
属性
原生(Native) 组件的属性也是可用的。
名称 | 类型 | 默认值 | 描述 |
---|---|---|---|
children | node | 组件的内容 | |
implementation | 'css' | 'js' | 'js' | 指定要使用的实现方式。 'js' 为默认值, 'css' 在服务器端渲染的情况下表现的更好。 |
initialWidth | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 您可以在服务器端渲染中选择 js 实现时使用此prop。由于 window.innerWidh 在服务端不可用,因此我们默认在第一次挂载时渲染一个空组件。 您可能想要使用浏览器宽度来预估屏幕宽度。例如,可以使用User-Agent或客户端提示 https://caniuse.com/#search=客户端%20hint | |
lgDown | bool | false | If true , screens this size and down are hidden. |
lgUp | bool | false | If true , screens this size and up are hidden. |
mdDown | bool | false | If true , screens this size and down are hidden. |
mdUp | bool | false | If true , screens this size and up are hidden. |
only | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | Array<'xs' | 'sm' | 'md' | 'lg' | 'xl'> | Hide the given breakpoint(s). | |
smDown | bool | false | If true , screens this size and down are hidden. |
smUp | bool | false | If true , screens this size and up are hidden. |
xlDown | bool | false | 如果 true , 屏幕大小和下面都将被隐藏。 |
xlUp | bool | false | If true , screens this size and up are hidden. |
xsDown | bool | false | If true , screens this size and down are hidden. |
xsUp | bool | false | If true , screens this size and up are hidden. |
组件无法持有 ref。