sethsandaru / vue-form-builder

Super Form Builder built on top of Vue with Drag & Drop functionality, savable-form-schema and easy to maintain/upgrade your form.
http://vue-form-builder.sethphat.com
MIT License
413 stars 129 forks source link

Allow the user to remove default control(s) #86

Closed sadortun closed 3 years ago

sadortun commented 3 years ago

You can now disable a control during the install

// Example: Remove the number and dropDown controls
Vue.use(VueFormBuilderPlugin, {
  controls: {
    number:   false,
    dropDown: false,
  }
})

Fix #85

sadortun commented 3 years ago

@sethsandaru is there a reason why you won't merge this ?

sadortun commented 3 years ago

Ah nevermind, I just saw your comment on the issue. I guess you simply haven't pushed your patch release branch yet 😎

sayami007 commented 2 years ago

How can we achieve this?