Sousmargot/src/components/nav.vue

24 lines
294 B
Vue

<template>
<nav>
<ul>
<li>Plop</li>
<li>Pipo</li>
</ul>
</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>