13 lines
255 B
Plaintext
13 lines
255 B
Plaintext
component Form {
|
|
props {
|
|
action = ""
|
|
method = "post"
|
|
name = ""
|
|
loading = false
|
|
class = ""
|
|
}
|
|
view {
|
|
<form action="{action}" method="{method}" name="{name}" aria-busy="{loading}" class="wire-form {class}"><slot /></form>
|
|
}
|
|
}
|