Skip to content

Commit

Permalink
docs(input): enhance examples (#1048)
Browse files Browse the repository at this point in the history
  • Loading branch information
mlmoravek committed Sep 17, 2024
1 parent aafa9f3 commit 63ffb49
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions packages/oruga/src/components/input/examples/base.vue
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,17 @@ const name = ref("John Silver");
<o-field label="Disabled">
<o-input placeholder="Disabled" disabled />
</o-field>

<o-field label="Expanded">
<o-input placeholder="Expanded" expanded />
</o-field>

<o-field label="Counter">
<o-input
placeholder="Counter"
:maxlength="10"
:maxitems="5"
counter />
</o-field>
</section>
</template>

0 comments on commit 63ffb49

Please sign in to comment.