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

24 lines
610 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 setup>
import { ref } from 'vue'
import { DropTimes as TinyDropTimes } from '@opentiny/vue'
const value = ref('')
</script>
<style lang="less" scoped>
.drop-time-demo-size {
width: 270px;
& > * {
margin-top: 12px;
}
}
</style>