mirror of
https://git.hmsn.ink/kospo/svcm/oa.git
synced 2026-03-19 21:05:06 +09:00
38 lines
657 B
Markdown
38 lines
657 B
Markdown
### Help Text
|
|
|
|
You can easily add a help text to guide users when they
|
|
interact with your forms. Use the `help` prop of the `<VField />`
|
|
component to inject your help text string. See the code example
|
|
for more details about usage.
|
|
|
|
<!--code-->
|
|
|
|
```vue
|
|
<template>
|
|
<VField>
|
|
<VControl>
|
|
<VInput type="text" placeholder="Username" />
|
|
<p class="help">
|
|
Choose a nice username
|
|
</p>
|
|
</VControl>
|
|
</VField>
|
|
</template>
|
|
```
|
|
|
|
<!--/code-->
|
|
|
|
<!--example-->
|
|
|
|
<VField>
|
|
<VControl>
|
|
<VInput
|
|
type="text"
|
|
placeholder="Username"
|
|
/>
|
|
<p class="help">Choose a nice username</p>
|
|
</VControl>
|
|
</VField>
|
|
|
|
<!--/example-->
|