lew-ui 1.4.7 → 1.4.8
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 +46 -46
- package/dist/lew.es.ts +1556 -667
- package/dist/lew.umd.ts +2 -2
- package/dist/style.css +1 -1
- package/package.json +82 -82
package/README.md
CHANGED
|
@@ -1,46 +1,46 @@
|
|
|
1
|
-

|
|
2
|
-
|
|
3
|
-
# Lew-UI
|
|
4
|
-
|
|
5
|
-
A Component Library for Vue3.js.
|
|
6
|
-
Doc address: https://lew.kamtao.com
|
|
7
|
-
|
|
8
|
-
## Install
|
|
9
|
-
|
|
10
|
-
```bash
|
|
11
|
-
npm install lew-ui --save
|
|
12
|
-
```
|
|
13
|
-
|
|
14
|
-
## How to use
|
|
15
|
-
|
|
16
|
-
引入 css
|
|
17
|
-
|
|
18
|
-
```js
|
|
19
|
-
// main.ts
|
|
20
|
-
import 'lew-ui/dist/style.css';
|
|
21
|
-
```
|
|
22
|
-
|
|
23
|
-
页面
|
|
24
|
-
|
|
25
|
-
```vue
|
|
26
|
-
<script setup lang="ts">
|
|
27
|
-
import { LewButton } from 'lew-ui';
|
|
28
|
-
</script>
|
|
29
|
-
|
|
30
|
-
<template>
|
|
31
|
-
<lew-button text="发送" />
|
|
32
|
-
</template>
|
|
33
|
-
```
|
|
34
|
-
|
|
35
|
-
## Todo List
|
|
36
|
-
|
|
37
|
-
- Step 步骤
|
|
38
|
-
- Upload 上传
|
|
39
|
-
- Card 卡片
|
|
40
|
-
- Progress 进度条
|
|
41
|
-
- Loading 加载
|
|
42
|
-
|
|
43
|
-
## Thanks
|
|
44
|
-
|
|
45
|
-
- https://github.com/atomiks/tippyjs
|
|
46
|
-
- https://fengyuanchen.github.io/vue-feather/
|
|
1
|
+

|
|
2
|
+
|
|
3
|
+
# Lew-UI
|
|
4
|
+
|
|
5
|
+
A Component Library for Vue3.js.
|
|
6
|
+
Doc address: https://lew.kamtao.com
|
|
7
|
+
|
|
8
|
+
## Install
|
|
9
|
+
|
|
10
|
+
```bash
|
|
11
|
+
npm install lew-ui --save
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
## How to use
|
|
15
|
+
|
|
16
|
+
引入 css
|
|
17
|
+
|
|
18
|
+
```js
|
|
19
|
+
// main.ts
|
|
20
|
+
import 'lew-ui/dist/style.css';
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
页面
|
|
24
|
+
|
|
25
|
+
```vue
|
|
26
|
+
<script setup lang="ts">
|
|
27
|
+
import { LewButton } from 'lew-ui';
|
|
28
|
+
</script>
|
|
29
|
+
|
|
30
|
+
<template>
|
|
31
|
+
<lew-button text="发送" />
|
|
32
|
+
</template>
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
## Todo List
|
|
36
|
+
|
|
37
|
+
- Step 步骤
|
|
38
|
+
- Upload 上传
|
|
39
|
+
- Card 卡片
|
|
40
|
+
- Progress 进度条
|
|
41
|
+
- Loading 加载
|
|
42
|
+
|
|
43
|
+
## Thanks
|
|
44
|
+
|
|
45
|
+
- https://github.com/atomiks/tippyjs
|
|
46
|
+
- https://fengyuanchen.github.io/vue-feather/
|