web/src/App.vue

27 lines
574 B
Vue
Raw Normal View History

2021-12-28 17:23:04 +01:00
<script setup lang="ts">
// This starter template is using Vue 3 <script setup> SFCs
// Check out https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup
2021-12-28 20:40:47 +01:00
import SectionsList from './components/SectionsList.vue'
2021-12-28 17:23:04 +01:00
</script>
<template>
2021-12-28 18:01:56 +01:00
<div>
<img
alt="Vue logo"
src="./assets/logo.png"
>
2021-12-28 20:40:47 +01:00
<SectionsList />
2021-12-28 18:01:56 +01:00
</div>
2021-12-28 17:23:04 +01:00
</template>
<style>
#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>