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

7 lines
219 B
HTML

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