chore: 🔊 Test logging

This commit is contained in:
ThatOneCalculator 2022-08-09 15:44:44 -07:00
parent 50417674b2
commit 8f441fd0f4

View file

@ -6,7 +6,12 @@ import MkError from '@/pages/_error_.vue';
import { api } from '@/os';
import { ui } from '@/config';
const guestTimeline = api('meta', { detail: false }).enableGuestTimeline;
const meta = await api('meta', {
detail: false
});
const guestTimeline = meta.enableGuestTimeline;
console.log(meta);
console.log(guestTimeline);
const page = (loader: AsyncComponentLoader<any>) => defineAsyncComponent({
loader: loader,