tiny-vue/examples/sites/demos/pc/app/drop-times/size.vue

32 lines
658 B
Vue
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div class="drop-time-demo-size">
<tiny-drop-times size="medium" v-model="value" placeholder="尺寸medium"></tiny-drop-times>
<tiny-drop-times size="small" v-model="value" placeholder="尺寸small"></tiny-drop-times>
<tiny-drop-times size="mini" v-model="value" placeholder="尺寸mini"></tiny-drop-times>
</div>
</template>
<script>
import { DropTimes } from '@opentiny/vue'
export default {
components: {
TinyDropTimes: DropTimes
},
data() {
return {
value: ''
}
}
}
</script>
<style lang="less" scoped>
.drop-time-demo-size {
width: 270px;
& > * {
margin-top: 12px;
}
}
</style>