* @description * Returns whether the form submission has been triggered.
()
| 130 | * Returns whether the form submission has been triggered. |
| 131 | */ |
| 132 | get submitted(): boolean { |
| 133 | return untracked(this.submittedReactive); |
| 134 | } |
| 135 | /** @internal */ |
| 136 | readonly _submitted = computed(() => this.submittedReactive()); |
| 137 | private readonly submittedReactive = signal(false); |
nothing calls this directly
no test coverage detected