Method: VueFormFor::FormBuilder#select

Defined in:
lib/vue-form-for/form_builder.rb

#select(method, choices = nil, options = {}, html_options = {}, &block) ⇒ Object



35
36
37
38
39
# File 'lib/vue-form-for/form_builder.rb', line 35

def select(method, choices = nil, options = {}, html_options = {}, &block)
  resolve_vue_options(html_options)
  add_v_model_attribute(method, html_options)
  super(method, choices, options, html_options, &block)
end