14 lines
379 B
HTML
14 lines
379 B
HTML
<template name="inputText">
|
|
{{#baseComponent (extend this
|
|
base='baseInput'
|
|
class=(concat 'form-control ' this.class)
|
|
mixins=(concat 'input ' this.mixins)
|
|
wrappers=(concat ''
|
|
(valueIf reactive this.label 'wrapperLabel ' '')
|
|
this.wrappers
|
|
)
|
|
)}}
|
|
{{>UI.contentBlock}}
|
|
{{/baseComponent}}
|
|
</template>
|