comparison client/src/App.vue @ 13:88d0d60924cf

Move vuejs app into subdir `client` Using a subdirectory for the web application keeps more structure in the repo.
author Bernhard Reiter <bernhard@intevation.de>
date Wed, 20 Jun 2018 17:02:06 +0200
parents src/App.vue@1597506a2241
children 7d242100af46
comparison
equal deleted inserted replaced
12:000adddf74c8 13:88d0d60924cf
1 <template>
2 <div id="app">
3 <div id="nav">
4 </div>
5 <router-view/>
6 </div>
7 </template>
8
9 <style lang="scss">
10 #app {
11 font-family: "Avenir", Helvetica, Arial, sans-serif;
12 -webkit-font-smoothing: antialiased;
13 -moz-osx-font-smoothing: grayscale;
14 text-align: center;
15 color: #2c3e50;
16 }
17 #nav {
18 padding: 30px;
19 a {
20 font-weight: bold;
21 color: #2c3e50;
22 &.router-link-exact-active {
23 color: #42b983;
24 }
25 }
26 }
27 </style>