20 lines
315 B
Vue
20 lines
315 B
Vue
<script setup lang="ts">
|
|
import Background from "./Background.vue";
|
|
import LeftBar from "./LeftBar.vue";
|
|
import Title from "./Title.vue";
|
|
|
|
const store = useContactStore();
|
|
|
|
onMounted(() => {
|
|
store.$reset();
|
|
store.animateIntro();
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<Background />
|
|
|
|
<LeftBar />
|
|
<Title />
|
|
</template>
|