We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bd6fa7 commit a6843c8Copy full SHA for a6843c8
README.md
@@ -2,6 +2,35 @@
2
3
SoybeanUI is built on top of SoybeanHeadless, providing a collection of styled components for Vue 3.
4
5
+## Installation
6
+
7
+```bash
8
+pnpm add @soybeanjs/ui
9
+```
10
11
+## Usage
12
13
+- import styles
14
15
+```ts
16
+import '@soybeanjs/ui/styles.css';
17
18
19
+- use with `unplugin-vue-components`
20
21
22
+import Components from 'unplugin-vue-components/vite';
23
+import UiResolver from '@soybeanjs/ui/resolver';
24
25
+export default defineConfig({
26
+ plugins: [
27
+ Components({
28
+ resolvers: [UiResolver()]
29
+ })
30
+ ]
31
+});
32
33
34
## Roadmap
35
36
### Components
0 commit comments