hugo-theme-cyberscopes/layouts/shortcodes/pv/input-textline.html

7 lines
220 B
HTML

{{- $name := default "textline" (.Get "name") }}
<div v-scope>
<input type="text" name="{{ $name }}" autofocus
v-model="data.{{ $name }}"
@vue:mounted="$el.value = ''"
@change="save($el.value)" />
</div>