new version

This commit is contained in:
Warunee Tamkoo 2023-11-07 09:15:33 +07:00
parent 63ba9a65f7
commit 97bbb3ebee
45 changed files with 1494 additions and 0 deletions

30
src/App.vue Normal file
View file

@ -0,0 +1,30 @@
<template>
<!-- <nav>
<router-link to="/">Home</router-link> |
<router-link to="/about">About</router-link>
</nav> -->
<router-view />
</template>
<style>
#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;
}
nav a {
font-weight: bold;
color: #2c3e50;
}
nav a.router-link-exact-active {
color: #42b983;
}
</style>