浏览代码

表单 弹窗

lincl 4 年之前
父节点
当前提交
b6ba3a84d5
共有 2 个文件被更改,包括 9 次插入3 次删除
  1. 8 2
      index.js
  2. 1 1
      src/components/Form/index.vue

+ 8 - 2
index.js

@ -1,9 +1,14 @@
import CustomTable from './src/components/TablePage'
import CustomForm from './src/components/Form'
import CustomDialog from './src/components/Dialog'
import Tools from './src/utils/tool'
import _Vue from 'vue'
const components = [
    CustomTable
    CustomTable,
    CustomForm,
    CustomDialog
]
const install = function(Vue){
@ -36,7 +41,8 @@ const setOptions = function(options){
export default {
    version: '1.0.0',
    CustomTable,
    CustomForm,
    CustomDialog,
    
    install,
    setDictLoader,

+ 1 - 1
src/components/Form/index.vue

@ -58,7 +58,7 @@ var validateIdCard = (rule, value, callback) => {
	return callback() 
};
export default {
	name: 'FormCom',
	name: 'CustomForm',
	props: {
		'configs':{},
	},