├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .postcssrc.js ├── .prettierignore ├── .prettierrc ├── .stylelintrc ├── LICENSE ├── README.md ├── favicon.ico ├── index.html ├── mock └── index.js ├── package.json ├── public └── tinymce4.7.5 │ ├── langs │ └── zh_CN.js │ ├── plugins │ ├── codesample │ │ └── css │ │ │ └── prism.css │ ├── emoticons │ │ └── img │ │ │ ├── smiley-cool.gif │ │ │ ├── smiley-cry.gif │ │ │ ├── smiley-embarassed.gif │ │ │ ├── smiley-foot-in-mouth.gif │ │ │ ├── smiley-frown.gif │ │ │ ├── smiley-innocent.gif │ │ │ ├── smiley-kiss.gif │ │ │ ├── smiley-laughing.gif │ │ │ ├── smiley-money-mouth.gif │ │ │ ├── smiley-sealed.gif │ │ │ ├── smiley-smile.gif │ │ │ ├── smiley-surprised.gif │ │ │ ├── smiley-tongue-out.gif │ │ │ ├── smiley-undecided.gif │ │ │ ├── smiley-wink.gif │ │ │ └── smiley-yell.gif │ └── visualblocks │ │ └── css │ │ └── visualblocks.css │ ├── skins │ └── lightgray │ │ ├── content.inline.min.css │ │ ├── content.min.css │ │ ├── fonts │ │ ├── tinymce-mobile.woff │ │ ├── tinymce-small.eot │ │ ├── tinymce-small.svg │ │ ├── tinymce-small.ttf │ │ ├── tinymce-small.woff │ │ ├── tinymce.eot │ │ ├── tinymce.svg │ │ ├── tinymce.ttf │ │ └── tinymce.woff │ │ ├── img │ │ ├── anchor.gif │ │ ├── loader.gif │ │ ├── object.gif │ │ └── trans.gif │ │ ├── skin.min.css │ │ └── skin.min.css.map │ └── tinymce.min.js └── src ├── App.vue ├── components ├── dynamic-form │ ├── form.vue │ ├── index.js │ ├── input-number.vue │ └── item.vue ├── icon-svg │ ├── icon-svg.vue │ ├── icons │ │ ├── cascader.svg │ │ ├── checkbox.svg │ │ ├── disabled.svg │ │ ├── input.svg │ │ ├── number.svg │ │ ├── radio.svg │ │ ├── richtext.svg │ │ ├── select.svg │ │ └── switch.svg │ └── index.js ├── themePicker.vue └── tinymce │ ├── index.vue │ ├── init.js │ └── zh_CN.json ├── gifs ├── ajax.gif ├── drag.gif └── live.gif ├── index.js ├── router └── index.js ├── store ├── index.js └── modules │ └── form.js ├── utils ├── guid.js └── request.js └── views ├── editor ├── form │ ├── aside │ │ ├── availabel-item-list.js │ │ ├── editor-global.json │ │ ├── editor-options.vue │ │ ├── editor-rules.vue │ │ ├── editors-item │ │ │ ├── cascader.vue │ │ │ ├── checkbox.vue │ │ │ ├── date.vue │ │ │ ├── input.vue │ │ │ ├── number.vue │ │ │ ├── radio.vue │ │ │ ├── richtext.vue │ │ │ ├── select.vue │ │ │ └── switch.vue │ │ ├── index.vue │ │ └── items-list.vue │ └── main │ │ ├── fake-form-item.vue │ │ ├── fake-form.vue │ │ └── index.vue ├── index.vue └── table │ ├── aside.vue │ ├── availabel-list.js │ └── main.vue └── preview └── preview.vue /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/.gitignore -------------------------------------------------------------------------------- /.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/.postcssrc.js -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/.prettierrc -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/.stylelintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/README.md -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/favicon.ico -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/index.html -------------------------------------------------------------------------------- /mock/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/mock/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/package.json -------------------------------------------------------------------------------- /public/tinymce4.7.5/langs/zh_CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/public/tinymce4.7.5/langs/zh_CN.js -------------------------------------------------------------------------------- /public/tinymce4.7.5/plugins/codesample/css/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/public/tinymce4.7.5/plugins/codesample/css/prism.css -------------------------------------------------------------------------------- /public/tinymce4.7.5/plugins/emoticons/img/smiley-cool.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/public/tinymce4.7.5/plugins/emoticons/img/smiley-cool.gif -------------------------------------------------------------------------------- /public/tinymce4.7.5/plugins/emoticons/img/smiley-cry.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/public/tinymce4.7.5/plugins/emoticons/img/smiley-cry.gif -------------------------------------------------------------------------------- /public/tinymce4.7.5/plugins/emoticons/img/smiley-embarassed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/public/tinymce4.7.5/plugins/emoticons/img/smiley-embarassed.gif -------------------------------------------------------------------------------- /public/tinymce4.7.5/plugins/emoticons/img/smiley-foot-in-mouth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/public/tinymce4.7.5/plugins/emoticons/img/smiley-foot-in-mouth.gif -------------------------------------------------------------------------------- /public/tinymce4.7.5/plugins/emoticons/img/smiley-frown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/public/tinymce4.7.5/plugins/emoticons/img/smiley-frown.gif -------------------------------------------------------------------------------- /public/tinymce4.7.5/plugins/emoticons/img/smiley-innocent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/public/tinymce4.7.5/plugins/emoticons/img/smiley-innocent.gif -------------------------------------------------------------------------------- /public/tinymce4.7.5/plugins/emoticons/img/smiley-kiss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/public/tinymce4.7.5/plugins/emoticons/img/smiley-kiss.gif -------------------------------------------------------------------------------- /public/tinymce4.7.5/plugins/emoticons/img/smiley-laughing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/public/tinymce4.7.5/plugins/emoticons/img/smiley-laughing.gif -------------------------------------------------------------------------------- /public/tinymce4.7.5/plugins/emoticons/img/smiley-money-mouth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/public/tinymce4.7.5/plugins/emoticons/img/smiley-money-mouth.gif -------------------------------------------------------------------------------- /public/tinymce4.7.5/plugins/emoticons/img/smiley-sealed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/public/tinymce4.7.5/plugins/emoticons/img/smiley-sealed.gif -------------------------------------------------------------------------------- /public/tinymce4.7.5/plugins/emoticons/img/smiley-smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/public/tinymce4.7.5/plugins/emoticons/img/smiley-smile.gif -------------------------------------------------------------------------------- /public/tinymce4.7.5/plugins/emoticons/img/smiley-surprised.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/public/tinymce4.7.5/plugins/emoticons/img/smiley-surprised.gif -------------------------------------------------------------------------------- /public/tinymce4.7.5/plugins/emoticons/img/smiley-tongue-out.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/public/tinymce4.7.5/plugins/emoticons/img/smiley-tongue-out.gif -------------------------------------------------------------------------------- /public/tinymce4.7.5/plugins/emoticons/img/smiley-undecided.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/public/tinymce4.7.5/plugins/emoticons/img/smiley-undecided.gif -------------------------------------------------------------------------------- /public/tinymce4.7.5/plugins/emoticons/img/smiley-wink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/public/tinymce4.7.5/plugins/emoticons/img/smiley-wink.gif -------------------------------------------------------------------------------- /public/tinymce4.7.5/plugins/emoticons/img/smiley-yell.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/public/tinymce4.7.5/plugins/emoticons/img/smiley-yell.gif -------------------------------------------------------------------------------- /public/tinymce4.7.5/plugins/visualblocks/css/visualblocks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/public/tinymce4.7.5/plugins/visualblocks/css/visualblocks.css -------------------------------------------------------------------------------- /public/tinymce4.7.5/skins/lightgray/content.inline.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/public/tinymce4.7.5/skins/lightgray/content.inline.min.css -------------------------------------------------------------------------------- /public/tinymce4.7.5/skins/lightgray/content.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/public/tinymce4.7.5/skins/lightgray/content.min.css -------------------------------------------------------------------------------- /public/tinymce4.7.5/skins/lightgray/fonts/tinymce-mobile.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/public/tinymce4.7.5/skins/lightgray/fonts/tinymce-mobile.woff -------------------------------------------------------------------------------- /public/tinymce4.7.5/skins/lightgray/fonts/tinymce-small.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/public/tinymce4.7.5/skins/lightgray/fonts/tinymce-small.eot -------------------------------------------------------------------------------- /public/tinymce4.7.5/skins/lightgray/fonts/tinymce-small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/public/tinymce4.7.5/skins/lightgray/fonts/tinymce-small.svg -------------------------------------------------------------------------------- /public/tinymce4.7.5/skins/lightgray/fonts/tinymce-small.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/public/tinymce4.7.5/skins/lightgray/fonts/tinymce-small.ttf -------------------------------------------------------------------------------- /public/tinymce4.7.5/skins/lightgray/fonts/tinymce-small.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/public/tinymce4.7.5/skins/lightgray/fonts/tinymce-small.woff -------------------------------------------------------------------------------- /public/tinymce4.7.5/skins/lightgray/fonts/tinymce.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/public/tinymce4.7.5/skins/lightgray/fonts/tinymce.eot -------------------------------------------------------------------------------- /public/tinymce4.7.5/skins/lightgray/fonts/tinymce.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/public/tinymce4.7.5/skins/lightgray/fonts/tinymce.svg -------------------------------------------------------------------------------- /public/tinymce4.7.5/skins/lightgray/fonts/tinymce.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/public/tinymce4.7.5/skins/lightgray/fonts/tinymce.ttf -------------------------------------------------------------------------------- /public/tinymce4.7.5/skins/lightgray/fonts/tinymce.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/public/tinymce4.7.5/skins/lightgray/fonts/tinymce.woff -------------------------------------------------------------------------------- /public/tinymce4.7.5/skins/lightgray/img/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/public/tinymce4.7.5/skins/lightgray/img/anchor.gif -------------------------------------------------------------------------------- /public/tinymce4.7.5/skins/lightgray/img/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/public/tinymce4.7.5/skins/lightgray/img/loader.gif -------------------------------------------------------------------------------- /public/tinymce4.7.5/skins/lightgray/img/object.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/public/tinymce4.7.5/skins/lightgray/img/object.gif -------------------------------------------------------------------------------- /public/tinymce4.7.5/skins/lightgray/img/trans.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/public/tinymce4.7.5/skins/lightgray/img/trans.gif -------------------------------------------------------------------------------- /public/tinymce4.7.5/skins/lightgray/skin.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/public/tinymce4.7.5/skins/lightgray/skin.min.css -------------------------------------------------------------------------------- /public/tinymce4.7.5/skins/lightgray/skin.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/public/tinymce4.7.5/skins/lightgray/skin.min.css.map -------------------------------------------------------------------------------- /public/tinymce4.7.5/tinymce.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/public/tinymce4.7.5/tinymce.min.js -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/components/dynamic-form/form.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/src/components/dynamic-form/form.vue -------------------------------------------------------------------------------- /src/components/dynamic-form/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/src/components/dynamic-form/index.js -------------------------------------------------------------------------------- /src/components/dynamic-form/input-number.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/src/components/dynamic-form/input-number.vue -------------------------------------------------------------------------------- /src/components/dynamic-form/item.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/src/components/dynamic-form/item.vue -------------------------------------------------------------------------------- /src/components/icon-svg/icon-svg.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/src/components/icon-svg/icon-svg.vue -------------------------------------------------------------------------------- /src/components/icon-svg/icons/cascader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/src/components/icon-svg/icons/cascader.svg -------------------------------------------------------------------------------- /src/components/icon-svg/icons/checkbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/src/components/icon-svg/icons/checkbox.svg -------------------------------------------------------------------------------- /src/components/icon-svg/icons/disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/src/components/icon-svg/icons/disabled.svg -------------------------------------------------------------------------------- /src/components/icon-svg/icons/input.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/src/components/icon-svg/icons/input.svg -------------------------------------------------------------------------------- /src/components/icon-svg/icons/number.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/src/components/icon-svg/icons/number.svg -------------------------------------------------------------------------------- /src/components/icon-svg/icons/radio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/src/components/icon-svg/icons/radio.svg -------------------------------------------------------------------------------- /src/components/icon-svg/icons/richtext.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/src/components/icon-svg/icons/richtext.svg -------------------------------------------------------------------------------- /src/components/icon-svg/icons/select.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/src/components/icon-svg/icons/select.svg -------------------------------------------------------------------------------- /src/components/icon-svg/icons/switch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/src/components/icon-svg/icons/switch.svg -------------------------------------------------------------------------------- /src/components/icon-svg/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/src/components/icon-svg/index.js -------------------------------------------------------------------------------- /src/components/themePicker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/src/components/themePicker.vue -------------------------------------------------------------------------------- /src/components/tinymce/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/src/components/tinymce/index.vue -------------------------------------------------------------------------------- /src/components/tinymce/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/src/components/tinymce/init.js -------------------------------------------------------------------------------- /src/components/tinymce/zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/src/components/tinymce/zh_CN.json -------------------------------------------------------------------------------- /src/gifs/ajax.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/src/gifs/ajax.gif -------------------------------------------------------------------------------- /src/gifs/drag.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/src/gifs/drag.gif -------------------------------------------------------------------------------- /src/gifs/live.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/src/gifs/live.gif -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/src/index.js -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/src/router/index.js -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/src/store/index.js -------------------------------------------------------------------------------- /src/store/modules/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/src/store/modules/form.js -------------------------------------------------------------------------------- /src/utils/guid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/src/utils/guid.js -------------------------------------------------------------------------------- /src/utils/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/src/utils/request.js -------------------------------------------------------------------------------- /src/views/editor/form/aside/availabel-item-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/src/views/editor/form/aside/availabel-item-list.js -------------------------------------------------------------------------------- /src/views/editor/form/aside/editor-global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/src/views/editor/form/aside/editor-global.json -------------------------------------------------------------------------------- /src/views/editor/form/aside/editor-options.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/src/views/editor/form/aside/editor-options.vue -------------------------------------------------------------------------------- /src/views/editor/form/aside/editor-rules.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/src/views/editor/form/aside/editor-rules.vue -------------------------------------------------------------------------------- /src/views/editor/form/aside/editors-item/cascader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/src/views/editor/form/aside/editors-item/cascader.vue -------------------------------------------------------------------------------- /src/views/editor/form/aside/editors-item/checkbox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/src/views/editor/form/aside/editors-item/checkbox.vue -------------------------------------------------------------------------------- /src/views/editor/form/aside/editors-item/date.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/src/views/editor/form/aside/editors-item/date.vue -------------------------------------------------------------------------------- /src/views/editor/form/aside/editors-item/input.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/src/views/editor/form/aside/editors-item/input.vue -------------------------------------------------------------------------------- /src/views/editor/form/aside/editors-item/number.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/src/views/editor/form/aside/editors-item/number.vue -------------------------------------------------------------------------------- /src/views/editor/form/aside/editors-item/radio.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/src/views/editor/form/aside/editors-item/radio.vue -------------------------------------------------------------------------------- /src/views/editor/form/aside/editors-item/richtext.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/src/views/editor/form/aside/editors-item/richtext.vue -------------------------------------------------------------------------------- /src/views/editor/form/aside/editors-item/select.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/src/views/editor/form/aside/editors-item/select.vue -------------------------------------------------------------------------------- /src/views/editor/form/aside/editors-item/switch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/src/views/editor/form/aside/editors-item/switch.vue -------------------------------------------------------------------------------- /src/views/editor/form/aside/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/src/views/editor/form/aside/index.vue -------------------------------------------------------------------------------- /src/views/editor/form/aside/items-list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/src/views/editor/form/aside/items-list.vue -------------------------------------------------------------------------------- /src/views/editor/form/main/fake-form-item.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/src/views/editor/form/main/fake-form-item.vue -------------------------------------------------------------------------------- /src/views/editor/form/main/fake-form.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/src/views/editor/form/main/fake-form.vue -------------------------------------------------------------------------------- /src/views/editor/form/main/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/src/views/editor/form/main/index.vue -------------------------------------------------------------------------------- /src/views/editor/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/src/views/editor/index.vue -------------------------------------------------------------------------------- /src/views/editor/table/aside.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/src/views/editor/table/aside.vue -------------------------------------------------------------------------------- /src/views/editor/table/availabel-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/src/views/editor/table/availabel-list.js -------------------------------------------------------------------------------- /src/views/editor/table/main.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/src/views/editor/table/main.vue -------------------------------------------------------------------------------- /src/views/preview/preview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowencool/super-form/HEAD/src/views/preview/preview.vue --------------------------------------------------------------------------------