Skip to content

Commit

Permalink
[Content] Add footer to programinfi page.
Browse files Browse the repository at this point in the history
  • Loading branch information
柴犬 authored and 柴犬 committed Oct 6, 2023
1 parent 620003b commit 2de94ee
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/pages/ProgramInfo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { defineAsyncComponent } from 'vue';
import { useBreakpoints, usePreferredLanguages, type DateLike } from '@vueuse/core';
import { signal } from '@/shared/libs/signal';
import { first, get } from 'lodash-es';
import MainFooter from '@/components/Layout/MainFooter.vue';

Check warning on line 6 in src/pages/ProgramInfo.vue

View workflow job for this annotation

GitHub Actions / 🧪 Lint

'DateLike' is defined but never used. Allowed unused vars must match /^_/u
import SessionList from '@/components/Layout/SessionList.vue';
const breakpoints = useBreakpoints({
Expand Down Expand Up @@ -32,10 +33,11 @@ const content = signal(get(i18n, first(langs.value) ?? 'en') ?? i18n.en);
<Suspense>
<component :is="content()" />
</Suspense>
<!-- <Suspense> -->
<Suspense>
<SessionList />
<!-- </Suspense> -->
</Suspense>
</main>
<MainFooter />
</div>
</template>

Expand Down

0 comments on commit 2de94ee

Please sign in to comment.