slider - 纵向区间

This commit is contained in:
halo
2021-12-28 13:09:08 +08:00
parent c66b00f066
commit 79b417947d
4 changed files with 95 additions and 36 deletions

View File

@@ -69,5 +69,27 @@ export default {
</script>
:::
::: title 纵向区间
:::
::: demo
<template>
<lay-slider v-model="value3" :range="true" :vertical="true"></lay-slider>
</template>
<script>
import { ref } from 'vue'
export default {
setup() {
const value4 = ref([20,50])
return {
value4
}
}
}
</script>
:::
::: comment
:::