remove comment

This commit is contained in:
freeplay 2023-07-15 17:53:04 -04:00
parent 94fd53b8cb
commit fdb55f7702

View file

@ -64,7 +64,7 @@
</template>
<script lang="ts" setup>
import { computed, ref, onMounted, onUnmounted } from "vue";
import { computed, ref, onMounted } from "vue";
import { Swiper, SwiperSlide } from "swiper/vue";
import XTutorial from "@/components/MkTutorialDialog.vue";
import XTimeline from "@/components/MkTimeline.vue";
@ -301,10 +301,6 @@ function syncSlide(index) {
swiperRef.slideTo(index);
}
onUnmounted(() => {
console.log("The timelines page has been unmounted");
});
onMounted(() => {
syncSlide(timelines.indexOf(swiperRef.activeIndex));
});