src/templates/bootstrap/selectOption.js
export default {
form: `
<option {{ selected ? 'selected="selected"' : '' }}
value="{{option.value}}"
{% for (var attr in attrs) { %}
{{attr}}="{{attrs[attr]}}"
{% } %}
>
{{t(option.label)}}
</option>
`,
html: '{% if (selected) { %}{{t(option.label)}}{% } %}'
};
