forked from verdnatura/salix-front
17 lines
342 B
Vue
17 lines
342 B
Vue
<script setup>
|
|
const model = defineModel({ type: [String, Number], required: true });
|
|
</script>
|
|
<template>
|
|
<QTime v-model="model" now-btn mask="HH:mm" />
|
|
</template>
|
|
<style lang="scss" scoped>
|
|
.q-time {
|
|
width: 230px;
|
|
min-width: unset;
|
|
:deep(.q-time__header) {
|
|
min-height: unset;
|
|
height: 50px;
|
|
}
|
|
}
|
|
</style>
|