feat: Vue3로 새롭게 작성한 메인 페이지 #229

Merged
Hide_D merged 61 commits from ng_main into devel 2023-03-09 02:25:31 +09:00
Showing only changes of commit deaf867314 - Show all commits
+7 -1
View File
@@ -71,7 +71,7 @@
/>
</div>
<div class="reservedCommandZone">
<PartialReservedCommand />
<PartialReservedCommand ref="reservedCommandPanel" />
</div>
<div v-if="frontInfo" class="cityInfo">
<CityBasicCard :city="frontInfo.city" />
@@ -413,6 +413,12 @@ watch(refreshCounter, async () => {
});
}
});
const reservedCommandPanel = ref<InstanceType<typeof PartialReservedCommand> | null>(null);
watch(refreshCounter, async() => {
reservedCommandPanel.value?.reloadCommandList();
});
</script>
<style lang="scss" scoped>
@import "@scss/common/break_500px.scss";