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 ''
|
||
|
|
this.wrappers
|
||
|
|
(valueIf reactive this.label 'wrapperLabel ' '')
|
||
|
|
)
|
||
|
|
)}}
|
||
|
|
{{>UI.contentBlock}}
|
||
|
|
{{/baseComponent}}
|
||
|
|
</template>
|