parent
e546f5e936
commit
025d61902a
@ -0,0 +1,14 @@
|
|||||||
|
<template>
|
||||||
|
<ChatInterface v-if="store.phase === 'chat'" />
|
||||||
|
<ComparisonView v-else-if="store.phase === 'comparison'" />
|
||||||
|
<Workbench v-else />
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup>
|
||||||
|
import { useItineraryStore } from '../stores/itinerary'
|
||||||
|
import ChatInterface from '../components/ChatInterface.vue'
|
||||||
|
import ComparisonView from '../components/ComparisonView.vue'
|
||||||
|
import Workbench from '../components/Workbench.vue'
|
||||||
|
|
||||||
|
const store = useItineraryStore()
|
||||||
|
</script>
|
||||||
Loading…
Reference in new issue