https://github.com/slim-template/slim-rails/issues/168
How could I convert below erb to slim?
ERB code
<div class="click" <%= love_type ? "data-review=#{target}" : "data-recommend=#{target}" %>
data-logined='<%= sth%>'></div>
I tried...
.click[data-logined="#{sth}"
love_type ? data-review="#{target}" : data-recommend="#{target}"]
and
.click data-logined="#{sth}" love_type ? data-review="#{target}" : data-recommend="#{target}"
But not work...
How could I do this writing simple DRY code?