feat: Conversations封装、首页开发

This commit is contained in:
rd
2025-08-19 18:01:30 +08:00
parent b717c7629f
commit c0fbf501e1
19 changed files with 594 additions and 29 deletions

View File

@ -4,7 +4,7 @@
<img src="@/assets/img/icon-logo.png" alt="" width="96" height="24" />
</div>
<div class="flex-1">
<MiddleSide />
<MiddleSide v-if="!isHomeRoute" />
</div>
<RightSide :isAgentRoute="isAgentRoute" v-if="userStore.isLogin" />
</div>
@ -24,6 +24,10 @@ const userStore = useUserStore();
const isAgentRoute = computed(() => {
return route.meta?.isAgentRoute;
});
const isHomeRoute = computed(() => {
return route.name === 'Home';
});
</script>
<style scoped lang="scss">
.navbar-wrap {