I’d like to build a plugin and use the newly introduced k-link-field.
I only found this Markup where i already added the options.
<k-link-field
required="true"
:value="link"
name="targetlink"
label="Targetlink"
:options="['url', 'page']"
@input="link = $event"
/>
is there any example on how to get the value from the input and how to set up the value in the vue file? Can anyone point me to the correct docs with a example?