hugo-theme-cyberscopes/layouts/shortcodes/pv/button.html

10 lines
373 B
HTML

{{- $type := .Get "type" | default "button" -}}
{{- $name := .Get "name" | default "submit" -}}
{{- $label := .Get "label" | default (title $name) -}}
{{- $exec := .Get "exec" | default "exec" -}}
{{- $action := .Get "action" | default "" -}}
<div v-scope>
<button type="{{ $type }}" name="{{$name}}"
@click="{{ $exec }}('{{ $action }}')">{{$label}}</button>
</div>