Update docs/components/range.md

This commit is contained in:
Ilya Artamonov
2023-06-28 19:19:15 +03:00
committed by GitHub
parent 3b8830b6b8
commit 32ca724e32

View File

@@ -48,7 +48,7 @@ const value = ref('10')
```vue ```vue
<template> <template>
<Range v-model="value" label="Min-max range" :min="0" :max="10" /> <Range v-model="value" label="Min-max range" min="0" max="10" />
</template> </template>
``` ```