fj-form 0.0.0
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 +25 -0
- package/dist/favicon.ico +0 -0
- package/dist/fj-form.css +1 -0
- package/dist/fj-form.js +2520 -0
- package/dist/fj-form.umd.cjs +16 -0
- package/dist/index.d.ts +129 -0
- package/package.json +59 -0
package/README.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# breeze-form
|
|
2
|
+
|
|
3
|
+
## 安装
|
|
4
|
+
|
|
5
|
+
```sh
|
|
6
|
+
npm install fm-form --save
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
### Compile and Hot-Reload for Development
|
|
10
|
+
|
|
11
|
+
```sh
|
|
12
|
+
npm run dev
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
### Type-Check, Compile and Minify for Production
|
|
16
|
+
|
|
17
|
+
```sh
|
|
18
|
+
npm run build
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
### Lint with [ESLint](https://eslint.org/)
|
|
22
|
+
|
|
23
|
+
```sh
|
|
24
|
+
npm run lint
|
|
25
|
+
```
|
package/dist/favicon.ico
ADDED
|
Binary file
|
package/dist/fj-form.css
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.item-content[data-v-46dc3a6b],.item-content[data-v-c1a28b76],.item-content[data-v-55332813],.item-content[data-v-5661da0c],.item-content[data-v-9243ad8a],.item-content[data-v-eacf7d61]{width:100%}.fj-form-container .fj-block[data-v-0cd9e5cf]{padding:10px;border:1px solid lime;margin-bottom:10px}.fj-form-container .fj-block .block-title[data-v-0cd9e5cf]{padding:10px;border:1px solid red}.fj-form-container .fj-block .fj-form-item[data-v-0cd9e5cf]{padding:10px;border:1px solid orange}
|