我想使用flowbite-react
库中的浮动标签组件。页面上提供的代码片段从flowbite-react导入
Spinner`。其他人遇到过这个问题吗?
flowbite-react floating label documentation page
import { Spinner } from 'flowbite-react';
function Component() {
return (
<div className="grid grid-flow-col justify-stretch space-x-4">
<FloatingLabel variant="filled" label="Label" />
<FloatingLabel variant="outlined" label="Label" />
<FloatingLabel variant="standard" label="Label" />
</div>
);
}
字符串
1条答案
按热度按时间hwamh0ep1#
导入
FloatingLabel
并使用它。这将起作用。字符串
如果没有,安装并设置Tailwind CSS以使用
flowbite
:型
将
flowbite
插件添加到tailwind.config.js
,并包含来自flowbite-react
的内容:型
参考这个docs来正确设置
tailwind
和flowbite-react
。然后它就可以工作了。