♻️ (app)

This commit is contained in:
Julien Calixte
2023-07-16 15:20:40 +02:00
parent 008030a02d
commit a7337cce2e
2 changed files with 2 additions and 2 deletions

View File

@@ -5,7 +5,7 @@ const { isReady } = useGitHubLogin()
</script> </script>
<template> <template>
<router-view v-if="isReady" class="app" /> <router-view v-if="isReady" />
</template> </template>
<style lang="scss"> <style lang="scss">

View File

@@ -11,7 +11,7 @@ const WelcomeWorld = defineAsyncComponent(
() => import('@/components/WelcomeWorld.vue') () => import('@/components/WelcomeWorld.vue')
) )
const props = defineProps<{ user: string; repo: string }>() const props = defineProps<{ user?: string; repo?: string }>()
useQueryStackedNotes() useQueryStackedNotes()
useComputeBacklinks() useComputeBacklinks()