lew-ui 1.9.7 → 1.9.11
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 +11 -4
- package/dist/index.umd.js +682 -6
- package/dist/style.css +1 -1
- package/package.json +21 -17
- package/dist/index.es.js +0 -20814
package/README.md
CHANGED
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
# Lew-UI
|
|
4
4
|
|
|
5
|
-
A Component Library for Vue3.js.
|
|
6
|
-
Doc address: https://lew.kamtao.com
|
|
5
|
+
A Component Library for Vue3.js. Doc address: https://lew.kamtao.com
|
|
7
6
|
|
|
8
7
|
## Install
|
|
9
8
|
|
|
@@ -19,12 +18,12 @@ npm install lew-ui --save
|
|
|
19
18
|
// main.ts
|
|
20
19
|
import 'lew-ui/style';
|
|
21
20
|
```
|
|
22
|
-
|
|
21
|
+
|
|
23
22
|
页面
|
|
24
23
|
|
|
25
24
|
```vue
|
|
26
25
|
<script setup lang="ts">
|
|
27
|
-
import { LewButton } from 'lew-ui';
|
|
26
|
+
import { LewButton } from 'lew-ui';
|
|
28
27
|
</script>
|
|
29
28
|
|
|
30
29
|
<template>
|
|
@@ -46,4 +45,12 @@ import { LewButton } from 'lew-ui';
|
|
|
46
45
|
- https://fengyuanchen.github.io/vue-feather/
|
|
47
46
|
|
|
48
47
|
## License
|
|
48
|
+
|
|
49
49
|
Lew UI is open source software licensed as MIT.
|
|
50
|
+
|
|
51
|
+
## Demo
|
|
52
|
+
|
|
53
|
+

|
|
54
|
+

|
|
55
|
+

|
|
56
|
+

|