WIP Расписание подтягивает данные по месяцам

This commit is contained in:
Daria Golova
2022-12-26 13:14:02 +03:00
parent 139d08ab4b
commit a61e3665e9
5 changed files with 73 additions and 11 deletions

View File

@@ -18,10 +18,10 @@
)
.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 }}
@click="clickItem(item?.id, item?.label)"
) {{ item?.label }}
</template>
<script>

View File

@@ -32,9 +32,7 @@ export default {
iconPosition: {
default: "right",
},
placeholder: {
default: "Поиск",
},
placeholder: String,
widthInput: Number,
borderNone: Boolean,
disabled: Boolean,