mirror of
https://git.hmsn.ink/kospo/svcm/oa.git
synced 2026-03-20 00:42:25 +09:00
487 B
487 B
Input Loading
An VInput can be shown in a loading state. To apply that style,
simply add the loading prop to the wrapping <VControl /> component.
<template>
<VField>
<VControl loading>
<VInput type="text" placeholder="Username" />
</VControl>
</VField>
</template>