Home Reference Source

src/templates/bootstrap/button.js

export default {
  form: `
<{{input.type}} 
  ref="button" 
  {% for (var attr in input.attr) { %}
  {{attr}}="{{input.attr[attr]}}"
  {% } %}
>
{% if (component.leftIcon) { %}<span class="{{component.leftIcon}}"></span>&nbsp;{% } %}
{{input.content}}
{% if (component.rightIcon) { %}&nbsp;<span class="{{component.rightIcon}}"></span>{% } %}
</{{input.type}}>
`,
  html: ' '
};