hot-form
Version:
A project developed based on ant-design-vue and vant whitch do some things on create/render/modify and etc. for forms. Also can custom some component on the form items if you want. 一个基于antdv/vant开发的创建表单组件,包含表单渲染、表单编辑页面、以及植入自定义附加内容的组件
19 lines (15 loc) • 441 B
JavaScript
/*
* @Author: Lvxx
* @Date: 2021-07-08 17:11:20
* @Last Modified by: Lvxx
* @Last Modified time: 2021-09-10 16:13:54
*/
import Vue from 'vue'
// import FormEdit from './components/formEdit/index';
import Entry from './components/formEdit/Entry';
// import 'ant-design-vue/dist/antd.less';
import './assets/styles/index.less';
// Vue.config.productionTip = false
new Vue({
render: h => h(Entry),
}).$mount('#app')