imep-vue-form-builder
Version:
Vue Form Builder PRO MAX built from top of Vue. Super dynamic and flexible including Drag and Drop feature.
28 lines (21 loc) • 686 B
text/typescript
/**
* NOTE - This file only exists for development purpose.
* It will help me to run and test the form
*/
import Vue from 'vue'
import App from './App.vue'
// @ts-ignore
import {VueFormBuilderPlugin} from "@/index";
import {IRegisterProperties} from "@/interfaces/register-properties.interface";
import './language/ml'
Vue.config.productionTip = false
const configOptions : IRegisterProperties = {
disableControls: [], // ['input', 'number']
globalInjection: true,
validationErrorShowAlert: true,
validationErrorAlertText: "Please check the error messages and solve it."
};
Vue.use(VueFormBuilderPlugin, configOptions)
new Vue({
render: h => h(App)
}).$mount('#app')