全局提示消息条。官方文档
yarn add @sinoui/message
import React from 'react';
import message from '@sinoui/message';
import Button from '@sinoui/core/Button';
function Demo() {
const handleClick = () => {
message.info('这是一条提示消息');
};
return <Button onClick={handleClick}>显示消息</Button>;
}
更多示例请参考官方文档。
项目中有以下有用的命令。
在开发和监听模式下启动项目。当代码发生变化时就会重新编译代码。它同时会实时地向你汇报项目中的代码错误。
打包,并将打包文件放在dist
文件夹中。使用 rollup 对代码做优化并打包成多种格式(Common JS
,UMD
和ES Module
)。
yarn lint
会检查整个项目是否有代码错误、风格错误。
开启 vscode 的 eslint、prettier 插件,在使用 vscode 编码时,就会自动修正风格错误、提示语法错误。
yarn format
可以自动调整整个项目的代码风格问题。
yarn test
以监听模式启动 jest,运行单元测试。
开启 vscode 的 jest 插件,会在文件变化时自动运行单元测试。
yarn doc:dev
yarn doc:build
yarn doc:publish