vueless 1.2.3-beta.8 → 1.2.3-beta.9
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 +12 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -40,6 +40,18 @@ Vueless is simple enough for everyday use and powerful enough for advanced scena
|
|
|
40
40
|
|
|
41
41
|
## Quick Start (Vue)
|
|
42
42
|
|
|
43
|
+
### New project
|
|
44
|
+
|
|
45
|
+
To get started with Vueless UI, simply paste the following code into your terminal:
|
|
46
|
+
|
|
47
|
+
```bash
|
|
48
|
+
npm create vueless@latest
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
This command guides you through a few setup options, then generates a new scaffolded Vue + Vueless UI project with the complete application structure.
|
|
52
|
+
|
|
53
|
+
### Existing project
|
|
54
|
+
|
|
43
55
|
1. Install `vueless` UI library packages.
|
|
44
56
|
|
|
45
57
|
```bash
|
package/package.json
CHANGED