mirror of
https://git.hmsn.ink/kospo/svcm/oa.git
synced 2026-03-20 06:23:41 +09:00
735 B
735 B
Start addons
Inputs can have addons if you need to show contextual information.
You can attach an addon at the start of a <VField /> with the addons
prop. See markup for more details about usage.
<template>
<VField addons>
<VControl>
<VButton static>
+1
</VButton>
</VControl>
<VControl expanded>
<VInput
type="text"
class="input"
placeholder="Username"
/>
</VControl>
</VField>
</template>