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