comparison src/App.vue @ 3:1597506a2241 vue-cli

merge with vue-cli
author Thomas Junk <thomas.junk@intevation.de>
date Wed, 13 Jun 2018 10:57:57 +0200
parents
children
comparison
equal deleted inserted replaced
2:9c6f68a8e8b2 3:1597506a2241
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>