2016-07-12 20:37:53 +02:00
|
|
|
<template name="inputSelect">
|
|
|
|
|
{{#baseComponent (extend this
|
|
|
|
|
base='baseSelect'
|
|
|
|
|
class=(concat 'form-control ' this.class)
|
|
|
|
|
mixins=(concat 'select ' this.mixins)
|
|
|
|
|
wrappers=(concat ''
|
|
|
|
|
(valueIf reactive this.label 'wrapperLabel ' '')
|
2016-07-14 16:25:39 +02:00
|
|
|
this.wrappers
|
2016-07-12 20:37:53 +02:00
|
|
|
)
|
|
|
|
|
)}}
|
|
|
|
|
{{>UI.contentBlock}}
|
|
|
|
|
{{/baseComponent}}
|
|
|
|
|
</template>
|