@toolmain/components 1.2.3 → 1.2.4
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 +43 -1
- package/dist/index.d.ts +1004 -0
- package/dist/index.js +12732 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,3 +1,45 @@
|
|
|
1
1
|
# @toolmain/components
|
|
2
2
|
|
|
3
|
-
components for vue3.
|
|
3
|
+
components for vue3.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```shell
|
|
8
|
+
pnpm add @toolmain/components
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## 📚 Usage
|
|
12
|
+
|
|
13
|
+
```ts
|
|
14
|
+
import { Affix } from "@toolmain/components"
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## 🔎 Overview
|
|
18
|
+
|
|
19
|
+
clone the core monorepo
|
|
20
|
+
|
|
21
|
+
```shell
|
|
22
|
+
git clone https://github.com/evilArsh/toolmain.git
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
install dependencies
|
|
26
|
+
|
|
27
|
+
```shell
|
|
28
|
+
pnpm i
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
start playground overview project
|
|
32
|
+
|
|
33
|
+
```shell
|
|
34
|
+
pnpm run dev
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
to test all hooks,functions and other components, just enter `playground/` diectory and use !
|
|
38
|
+
|
|
39
|
+
## 👏 Contributing
|
|
40
|
+
|
|
41
|
+
Pull requests are welcome
|
|
42
|
+
|
|
43
|
+
## 📝 License
|
|
44
|
+
|
|
45
|
+
[MIT](https://choosealicense.com/licenses/mit/)
|