node-atlas
Version:
Progressive realtime web framework config-driven or API-driven for building easily serverless files, websites and webapps component-based and service-oriented.
13 lines • 504 B
HTML
<div class="layout">
<nav class="menu">
<ul>
<li v-for="item in common.menu">
<router-link v-bind:to="webconfig.routes[item.key].url" v-bind:href="webconfig.routes[item.key].url" v-bind:title="item.title" v-bind:exact="webconfig.routes[item.key].url === '/'">{{ item.title }}</router-link>
</li>
</ul>
</nav>
<transition name="fade-in-out">
<router-view v-bind:common="common"></router-view>
</transition>
<footer class="footer" v-html="common.copyright"></footer>
</div>