mirror of
https://git.hmsn.ink/kospo/svcm/oa.git
synced 2026-03-20 22:13:32 +09:00
32 lines
487 B
Markdown
32 lines
487 B
Markdown
### 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.
|
|
|
|
<!--code-->
|
|
|
|
```vue
|
|
<template>
|
|
<VField>
|
|
<VControl loading>
|
|
<VInput type="text" placeholder="Username" />
|
|
</VControl>
|
|
</VField>
|
|
</template>
|
|
```
|
|
|
|
<!--/code-->
|
|
|
|
<!--example-->
|
|
|
|
<VField>
|
|
<VControl loading>
|
|
<VInput
|
|
type="text"
|
|
placeholder="Username"
|
|
/>
|
|
</VControl>
|
|
</VField>
|
|
|
|
<!--/example-->
|