├── .babelrc ├── .editorconfig ├── .gitignore ├── .postcssrc.js ├── README.md ├── config ├── dev.env.js ├── index.js └── prod.env.js ├── example ├── App.vue └── main.js ├── index.html ├── package.json ├── src ├── assets │ └── logo.png ├── components │ ├── SchemaForm.vue │ ├── TheAddInput.vue │ ├── TheCheckbox.vue │ ├── TheInput.vue │ ├── TheNumberInput.vue │ ├── ThePassInput.vue │ ├── TheRadio.vue │ ├── TheSelect.vue │ ├── TheTable.vue │ ├── TheTextArea.vue │ ├── TheTitle.vue │ ├── TheTree.vue │ └── button.vue ├── main.js ├── mixins │ ├── base.js │ └── validate.js ├── styles │ ├── base.css │ ├── button.css │ ├── checkbox.css │ ├── input.css │ ├── radio.css │ ├── select.css │ └── table.css └── utils │ └── index.js ├── static └── .gitkeep └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightingm/vue-awesome-form/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightingm/vue-awesome-form/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightingm/vue-awesome-form/HEAD/.gitignore -------------------------------------------------------------------------------- /.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightingm/vue-awesome-form/HEAD/.postcssrc.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightingm/vue-awesome-form/HEAD/README.md -------------------------------------------------------------------------------- /config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightingm/vue-awesome-form/HEAD/config/dev.env.js -------------------------------------------------------------------------------- /config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightingm/vue-awesome-form/HEAD/config/index.js -------------------------------------------------------------------------------- /config/prod.env.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | module.exports = { 3 | NODE_ENV: '"production"' 4 | } 5 | -------------------------------------------------------------------------------- /example/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightingm/vue-awesome-form/HEAD/example/App.vue -------------------------------------------------------------------------------- /example/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightingm/vue-awesome-form/HEAD/example/main.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightingm/vue-awesome-form/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightingm/vue-awesome-form/HEAD/package.json -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightingm/vue-awesome-form/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/components/SchemaForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightingm/vue-awesome-form/HEAD/src/components/SchemaForm.vue -------------------------------------------------------------------------------- /src/components/TheAddInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightingm/vue-awesome-form/HEAD/src/components/TheAddInput.vue -------------------------------------------------------------------------------- /src/components/TheCheckbox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightingm/vue-awesome-form/HEAD/src/components/TheCheckbox.vue -------------------------------------------------------------------------------- /src/components/TheInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightingm/vue-awesome-form/HEAD/src/components/TheInput.vue -------------------------------------------------------------------------------- /src/components/TheNumberInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightingm/vue-awesome-form/HEAD/src/components/TheNumberInput.vue -------------------------------------------------------------------------------- /src/components/ThePassInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightingm/vue-awesome-form/HEAD/src/components/ThePassInput.vue -------------------------------------------------------------------------------- /src/components/TheRadio.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightingm/vue-awesome-form/HEAD/src/components/TheRadio.vue -------------------------------------------------------------------------------- /src/components/TheSelect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightingm/vue-awesome-form/HEAD/src/components/TheSelect.vue -------------------------------------------------------------------------------- /src/components/TheTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightingm/vue-awesome-form/HEAD/src/components/TheTable.vue -------------------------------------------------------------------------------- /src/components/TheTextArea.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightingm/vue-awesome-form/HEAD/src/components/TheTextArea.vue -------------------------------------------------------------------------------- /src/components/TheTitle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightingm/vue-awesome-form/HEAD/src/components/TheTitle.vue -------------------------------------------------------------------------------- /src/components/TheTree.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightingm/vue-awesome-form/HEAD/src/components/TheTree.vue -------------------------------------------------------------------------------- /src/components/button.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightingm/vue-awesome-form/HEAD/src/components/button.vue -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightingm/vue-awesome-form/HEAD/src/main.js -------------------------------------------------------------------------------- /src/mixins/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightingm/vue-awesome-form/HEAD/src/mixins/base.js -------------------------------------------------------------------------------- /src/mixins/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightingm/vue-awesome-form/HEAD/src/mixins/validate.js -------------------------------------------------------------------------------- /src/styles/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightingm/vue-awesome-form/HEAD/src/styles/base.css -------------------------------------------------------------------------------- /src/styles/button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightingm/vue-awesome-form/HEAD/src/styles/button.css -------------------------------------------------------------------------------- /src/styles/checkbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightingm/vue-awesome-form/HEAD/src/styles/checkbox.css -------------------------------------------------------------------------------- /src/styles/input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightingm/vue-awesome-form/HEAD/src/styles/input.css -------------------------------------------------------------------------------- /src/styles/radio.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightingm/vue-awesome-form/HEAD/src/styles/radio.css -------------------------------------------------------------------------------- /src/styles/select.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightingm/vue-awesome-form/HEAD/src/styles/select.css -------------------------------------------------------------------------------- /src/styles/table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightingm/vue-awesome-form/HEAD/src/styles/table.css -------------------------------------------------------------------------------- /src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightingm/vue-awesome-form/HEAD/src/utils/index.js -------------------------------------------------------------------------------- /static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightingm/vue-awesome-form/HEAD/yarn.lock --------------------------------------------------------------------------------