10 lines
		
	
	
	
		
			445 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			445 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 "" -}}
 | |
| {{- $mode := .Get "mode" -}}
 | |
| <button type="{{ $type }}" name="{{ $name }}" 
 | |
| 		{{- with $mode }}v-show="state.mode == '{{ . }}'"{{ end -}}
 | |
| 	    @click="{{ $exec }}('{{ $action }}')">{{$label}}</button>
 | |
| 
 |