├── docs ├── docs │ ├── demo │ │ └── README.md │ ├── .vuepress │ │ ├── public │ │ │ └── logo.png │ │ ├── components │ │ │ ├── example.vue │ │ │ ├── demo.vue │ │ │ ├── list.vue │ │ │ ├── obj.vue │ │ │ ├── array.vue │ │ │ ├── number.vue │ │ │ ├── string.vue │ │ │ └── boolean.vue │ │ └── config.js │ ├── component │ │ ├── object.md │ │ ├── boolean.md │ │ ├── number.md │ │ ├── array.md │ │ └── string.md │ ├── README.md │ ├── guide │ │ └── README.md │ └── start │ │ └── README.md └── package.json ├── public ├── favicon.ico ├── imgs │ └── img.png └── index.html ├── examples ├── App.vue ├── docs │ ├── docsIndex.vue │ ├── boolean.vue │ ├── demo.vue │ ├── number.vue │ ├── object.vue │ ├── list.vue │ ├── array.vue │ └── string.vue ├── demos │ ├── demoIndex.vue │ ├── richText.vue │ ├── array.vue │ ├── simple.vue │ ├── object.vue │ ├── multi.vue │ ├── string.vue │ ├── demo.vue │ ├── links.vue │ └── all.vue ├── main.js └── router │ └── index.js ├── .gitignore ├── babel.config.js ├── packages ├── widgets │ ├── url.jsx │ ├── color.jsx │ ├── multiCheckbox.jsx │ ├── boolean.jsx │ ├── range.jsx │ ├── multiSelect.jsx │ ├── number.jsx │ ├── richText.jsx │ ├── date.jsx │ ├── image.jsx │ ├── input.jsx │ └── index.jsx ├── styles │ └── common.less ├── index.jsx └── utils │ ├── validate.js │ ├── utils.js │ └── index.js ├── deploy.sh ├── vue.config.js ├── LICENSE ├── package.json └── README.md /docs/docs/demo/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muwoo/vue-form-render/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/imgs/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muwoo/vue-form-render/HEAD/public/imgs/img.png -------------------------------------------------------------------------------- /docs/docs/.vuepress/public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muwoo/vue-form-render/HEAD/docs/docs/.vuepress/public/logo.png -------------------------------------------------------------------------------- /docs/docs/.vuepress/components/example.vue: -------------------------------------------------------------------------------- 1 |