@luoluoyu/fluentui-plus 0.1.4 → 0.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# FluentUI Plus
|
|
2
2
|
|
|
3
|
-
[](https://badge.fury.io/js/@luoluoyu%2Ffluentui-plus)
|
|
4
4
|
[](https://opensource.org/licenses/MIT)
|
|
5
5
|
|
|
6
6
|
基于 Fluent UI 的企业级组件库,专为中后台项目设计
|
|
@@ -18,20 +18,20 @@
|
|
|
18
18
|
## 📦 安装
|
|
19
19
|
|
|
20
20
|
```bash
|
|
21
|
-
npm install fluentui-plus @fluentui/react-components
|
|
21
|
+
npm install @luoluoyu/fluentui-plus @fluentui/react-components
|
|
22
22
|
```
|
|
23
23
|
|
|
24
24
|
或者使用 yarn:
|
|
25
25
|
|
|
26
26
|
```bash
|
|
27
|
-
yarn add fluentui-plus @fluentui/react-components
|
|
27
|
+
yarn add @luoluoyu/fluentui-plus @fluentui/react-components
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
## 🔨 使用
|
|
31
31
|
|
|
32
32
|
```jsx
|
|
33
33
|
import React from 'react';
|
|
34
|
-
import { Button, Tag } from 'fluentui-plus';
|
|
34
|
+
import { Button, Tag } from '@luoluoyu/fluentui-plus';
|
|
35
35
|
// 样式会自动导入,无需手动引入
|
|
36
36
|
|
|
37
37
|
function App() {
|