first commit

This commit is contained in:
2024-09-21 18:21:07 -03:00
commit 39379b67c3
19 changed files with 12973 additions and 0 deletions

41
src/App.vue Normal file
View File

@@ -0,0 +1,41 @@
<template>
<nav>
<router-link to="/">Home</router-link> |
<router-link to="/about">About</router-link>
</nav>
<router-view />
</template>
<script setup>
import { onMounted, ref } from 'vue';
import {useRouter} from 'vue-router';
const router = useRouter();
onMounted(() => {
router.push("/");
})
</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;
}
nav {
padding: 30px;
a {
font-weight: bold;
color: #2c3e50;
&.router-link-exact-active {
color: #42b983;
}
}
}
</style>