Sousmargot/src/components/nav.vue

22 lines
333 B
Vue
Raw Normal View History

2021-06-08 18:13:39 +00:00
<template>
<nav>
2021-06-08 21:32:04 +00:00
<router-link to="/"> Home </router-link>
<router-link to="/config"> Config </router-link>
2021-06-08 18:13:39 +00:00
</nav>
</template>
<script>
export default {
name: 'Nav',
props: {
}
}
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
nav {
background-color: green;
}
</style>