This commit is contained in:
2025-05-24 01:49:48 +09:00
commit 62abbcf4eb
2376 changed files with 325522 additions and 0 deletions

View File

@@ -0,0 +1,45 @@
### VField addons
Inputs can have addons if you need to show contextual information.
You can attach an addon at the end of a `<VField />` with the `addons` prop.
See markup for more details about usage.
<!--code-->
```vue
<template>
<VField label="Gmail account" addons>
<VControl expanded>
<VInput
type="text"
class="input"
placeholder="Username"
/>
</VControl>
<VControl>
<VButton static>
@gmail.com
</VButton>
</VControl>
</VField>
</template>
```
<!--/code-->
<!--example-->
<VField label="Gmail account" addons>
<VControl expanded>
<VInput
type="text"
class="input"
placeholder="Username"
/>
</VControl>
<VControl>
<VButton static>@gmail.com</VButton>
</VControl>
</VField>
<!--/example-->