HTML code inside buttons with simple_form

前端 未结 5 1298
情深已故
情深已故 2020-12-09 14:54

I\'m new to rails, and just found the simple_form gem. I installed it with bootstrap suport, but now I can\'t get this code to work the way I want it

<%=          


        
5条回答
  •  粉色の甜心
    2020-12-09 15:23

    One line example submit button in Rails with bootstrap btn class:

    <%= button_tag(type: 'submit', class: "btn btn-primary") do %> Save <% end %>
    

提交回复
热议问题