mirror of
https://git.hmsn.ink/kospo/svcm/oa.git
synced 2026-03-20 01:12:30 +09:00
first
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
### 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-->
|
||||
Reference in New Issue
Block a user