12345678910111213141516171819202122232425262728293031323334353637383940 |
- <template>
- <div class="slider-demo-block">
- <span class="demonstration">Breakpoints not displayed</span>
- <el-slider v-model="value1" :step="10" />
- </div>
- <div class="slider-demo-block">
- <span class="demonstration">Breakpoints displayed</span>
- <el-slider v-model="value2" :step="10" show-stops />
- </div>
- </template>
- <script lang="ts" setup>
- import { ref } from 'vue'
- const value1 = ref(0)
- const value2 = ref(0)
- </script>
- <style scoped>
- .slider-demo-block {
- display: flex;
- align-items: center;
- }
- .slider-demo-block .el-slider {
- margin-top: 0;
- margin-left: 12px;
- }
- .slider-demo-block .demonstration {
- font-size: 14px;
- color: var(--el-text-color-secondary);
- line-height: 44px;
- flex: 1;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- margin-bottom: 0;
- }
- .slider-demo-block .demonstration + .el-slider {
- flex: 0 0 70%;
- }
- </style>
|