Separate client and server codes. Keep everything in one git repo for simplicity
[vchess.git] / client / src / App.vue
1 <template lang="pug">
2 #app
3 #nav
4 router-link(to="/") Home
5 | &nbsp;|&nbsp;
6 router-link(to="/about") About
7 | &nbsp;|&nbsp;
8 router-link(to="/test") Test
9 router-view
10 </template>
11
12 <style lang="sass">
13 #app
14 font-family: "Avenir", Helvetica, Arial, sans-serif
15 -webkit-font-smoothing: antialiased
16 -moz-osx-font-smoothing: grayscale
17 text-align: center
18 color: #2c3e50
19
20 #nav
21 padding: 30px
22 a
23 font-weight: bold
24 color: #2c3e50
25 &.router-link-exact-active
26 color: #42b983
27 </style>