12 lines
281 B
HTML
12 lines
281 B
HTML
<template name="baseInput">
|
|
<input
|
|
type="{{choose this.type 'text'}}"
|
|
id="{{this.id}}"
|
|
class="{{this.class}}"
|
|
name="{{this.name}}"
|
|
value="{{reactive this.value}}"
|
|
{{this.tagAttributes}}
|
|
>
|
|
{{>UI.contentBlock}}
|
|
</template>
|