mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
8 lines
110 B
Vue
8 lines
110 B
Vue
<script setup lang="ts">
|
|
const value = ref(50)
|
|
</script>
|
|
|
|
<template>
|
|
<URange v-model="value" />
|
|
</template>
|