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> {% } %}
{{input.content}}
{% if (component.rightIcon) { %} <span class="{{component.rightIcon}}"></span>{% } %}
</{{input.type}}>
`,
html: ' '
};
