mirror of
https://git.hmsn.ink/kospo/svcm/oa.git
synced 2026-03-20 04:22:25 +09:00
33 lines
518 B
Markdown
33 lines
518 B
Markdown
### Line Icons
|
|
|
|
Vuero `VInput` are fully compatible with Line Icons.
|
|
Use the `icon` or `iconify` props on the `<VControl />`
|
|
component to show an icon.
|
|
|
|
<!--code-->
|
|
|
|
```vue
|
|
<template>
|
|
<VField>
|
|
<VControl icon="lnil lnil-briefcase">
|
|
<VInput type="text" placeholder="Company" />
|
|
</VControl>
|
|
</VField>
|
|
</template>
|
|
```
|
|
|
|
<!--/code-->
|
|
|
|
<!--example-->
|
|
|
|
<VField>
|
|
<VControl icon="lnil lnil-briefcase">
|
|
<VInput
|
|
type="text"
|
|
placeholder="Company"
|
|
/>
|
|
</VControl>
|
|
</VField>
|
|
|
|
<!--/example-->
|