wrap Transition around various views

This commit is contained in:
lightling 2024-05-17 17:08:37 -04:00
parent 10cada1f51
commit 936c61f0ba
5 changed files with 70 additions and 64 deletions

View file

@ -166,6 +166,7 @@ onMounted(async () => {
<template lang="pug"> <template lang="pug">
.template.gallery-list .template.gallery-list
Transition
.navigation( .navigation(
v-if='ready' v-if='ready'
) )

View file

@ -63,6 +63,7 @@ onMounted(async () => {
<template lang="pug"> <template lang="pug">
.template.gallery-view .template.gallery-view
Transition
.view-wrapper( .view-wrapper(
v-if='ready' v-if='ready'
) )

View file

@ -26,6 +26,7 @@ onMounted(async () => {
<template lang="pug"> <template lang="pug">
.template.markdown .template.markdown
Transition
EmbedableContent( EmbedableContent(
v-if='content' v-if='content'
:content='content' :content='content'

View file

@ -64,6 +64,7 @@ onMounted(async () => {
<template lang="pug"> <template lang="pug">
.template.project-list .template.project-list
Transition
.projects( .projects(
v-if='ready' v-if='ready'
) )
@ -78,6 +79,7 @@ onMounted(async () => {
:viewPath='projectViewPath' :viewPath='projectViewPath'
:isInternal='true' :isInternal='true'
) )
Transition
FilterPanel( FilterPanel(
v-if='ready && !!config.tags' v-if='ready && !!config.tags'
:tags='config.tags' :tags='config.tags'

View file

@ -45,6 +45,7 @@ onMounted(async () => {
<template lang="pug"> <template lang="pug">
.template.project-view .template.project-view
Transition
article( article(
v-if='ready' v-if='ready'
) )