blob: 8ab29b2b58b8e139ee64530e96672629b327ef8a (
plain) (
tree)
|
|
<template>
<div>
<Menubar :model="items">
<template #start>
<p id="header-title">Vela</p>
</template>
</Menubar>
</div>
</template>
<script>
export default {
data() {
return {
items: [
{
label:'Home',
icon:'pi pi-fw pi-home',
to:'/'
},
{
label:'New Smile',
icon:'pi pi-fw pi-user-plus',
to:'/new'
},
]
}
}
}
</script>
<style scoped>
#header-title {
margin: 0 1ch 0 0;
font-size: 150%;
font-family: "Iosevka Etoile", serif;
}
</style>
|