yunohost-admin/app/src/App.vue

15 lines
291 B
Vue
Raw Normal View History

2020-07-06 19:08:34 +02:00
<template>
<div id="app">
<nav>
<b-nav>
<b-nav-item to="/" exact exact-active-class="active">Home</b-nav-item>
</b-nav>
</nav>
<router-view/>
</div>
2020-07-06 19:08:34 +02:00
</template>
<style lang="scss">
@import '@/scss/main.scss';
</style>