Format code.
This commit is contained in:
parent
8b7229608c
commit
f040c6ef62
1 changed files with 20 additions and 20 deletions
|
|
@ -7,26 +7,26 @@
|
||||||
<span v-if="!isRequired" class="fw-normal ms-1">(Optional)</span>
|
<span v-if="!isRequired" class="fw-normal ms-1">(Optional)</span>
|
||||||
</div>
|
</div>
|
||||||
<textarea
|
<textarea
|
||||||
:id="textAreaLabelCopy"
|
:id="textAreaLabelCopy"
|
||||||
ref="textarea"
|
ref="textarea"
|
||||||
v-model="value"
|
v-model="value"
|
||||||
v-maska="mask"
|
v-maska="mask"
|
||||||
@keyup="updateCount"
|
@keyup="updateCount"
|
||||||
class="p-4"
|
class="p-4"
|
||||||
:maxlength="maxLength"
|
:maxlength="maxLength"
|
||||||
role="textbox"
|
role="textbox"
|
||||||
aria-multiline="true"
|
aria-multiline="true"
|
||||||
:aria-required="isRequired">
|
:aria-required="isRequired">
|
||||||
</textarea>
|
</textarea>
|
||||||
<p
|
<p
|
||||||
tabindex="-1"
|
tabindex="-1"
|
||||||
class="caption mt-2 mb-0 w-100"
|
class="caption mt-2 mb-0 w-100"
|
||||||
id="charactersRemaining"
|
id="charactersRemaining"
|
||||||
:class="[urgentCountdown ? 'urgent-countdown' : '']">
|
:class="[urgentCountdown ? 'urgent-countdown' : '']">
|
||||||
{{ remainingCount }}/{{ maxLength }} characters remaining
|
{{ remainingCount }}/{{ maxLength }} characters remaining
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue