Skip to content

Kirby 3.5.7.1

Counter

<k-counter>

We use the counter in many fields to show the character count of an input or the accepted min/max length of items. You can use the counter yourself very easily:

<k-counter :count="text.length" :min="2" :max="10" />
<input v-model="text">

Props

count

Number (default: null)

min

Number (default: null)

max

Number (default: null)

required

Boolean (default: false)