16 lines
489 B
HTML
16 lines
489 B
HTML
<template name="inputRadio">
|
|
{{#baseComponent (extend this
|
|
base='baseInput'
|
|
type='radio'
|
|
mixins=(concat 'input ' this.mixins)
|
|
labelAfter=(valueIf (isDefined this.labelAfter) this.labelAfter true)
|
|
labelClass=(concat 'checkboxLabel' this.labelClass)
|
|
wrappers=(concat ''
|
|
(valueIf reactive this.label 'wrapperLabel ' '')
|
|
this.wrappers
|
|
)
|
|
)}}
|
|
{{>UI.contentBlock}}
|
|
{{/baseComponent}}
|
|
</template>
|