[WIP] Добавил стили и форму на страницу расписания

(cherry picked from commit 109c6319a07ae73dc761c8c7fc2ddc7887d27161)
This commit is contained in:
megavrilinvv
2022-12-20 19:03:19 +03:00
committed by kandrusyak
parent 49f0df5604
commit 75e4b9cecb
6 changed files with 429 additions and 58 deletions

View File

@@ -18,7 +18,8 @@
)
.item.py-2.px-4.cursor-pointer(
v-for="item in items",
:key="item.id"
:key="item.id",
:class="{'center': center}",
@click="clickItem(item.id, item.label)"
) {{ item.label }}
</template>
@@ -38,6 +39,7 @@ export default {
borderNone: Boolean,
separator: Boolean,
placeholderOpacity: Boolean,
center: Boolean,
},
emits: ["update:modelValue"],
data() {
@@ -117,4 +119,7 @@ export default {
height: 24px
width: 1px
border-radius: 1px
.center
display: flex
justify-content: center
</style>