mirror of
https://github.com/nuxt/ui.git
synced 2026-09-14 19:51:10 +08:00
1858908d80
Co-authored-by: Jakub <jakub.michalek@freelo.io> Co-authored-by: Benjamin Canac <canacb1@gmail.com>
12 lines
167 B
Vue
12 lines
167 B
Vue
<script setup lang="ts">
|
|
const value = ref(5)
|
|
</script>
|
|
|
|
<template>
|
|
<UInputNumber
|
|
v-model="value"
|
|
:increment="false"
|
|
:decrement="false"
|
|
/>
|
|
</template>
|