digital-theory/sesame-vitejs/vue3/src/App.vue

27 lines
478 B
Vue

<template>
<CoverSection />
</template>
<script lang="ts">
import { defineComponent } from "vue";
import CoverSection from "./components/CoverSection.vue";
export default defineComponent({
name: "App",
components: {
CoverSection,
},
});
</script>
<style lang="scss">
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 60px;
}
</style>