ubiquitous-computing-geo-ti.../frontend/src/App.vue

42 lines
547 B
Vue
Raw Normal View History

2020-04-05 22:15:03 +02:00
<template>
<div id="app">
2020-04-17 10:15:09 +02:00
2020-04-15 18:38:30 +02:00
<router-view />
2020-04-17 10:15:09 +02:00
<Footer />
2020-04-05 22:15:03 +02:00
</div>
</template>
2020-04-17 10:15:09 +02:00
<script>
import Footer from './components/layout/Footer'
export default {
name:"app",
components: {
Footer
}
}
</script>
2020-04-05 22:15:03 +02:00
<style>
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
2020-04-15 18:38:30 +02:00
}
#nav {
padding: 30px;
}
#nav a {
font-weight: bold;
color: #2c3e50;
}
#nav a.router-link-exact-active {
color: #42b983;
2020-04-05 22:15:03 +02:00
}
</style>