[Vue] Create Vue.js Layout and Navigation with Nuxt.js

Nuxt.js enables you to easily create layout and navigation by replacing the default App.vue template with your own _app.vue template. Then you simply surround your content with your navigation and/or layout and you're ready to go.

 

<!-- _app.vue -->

<template>
    <nuxt-container>
        <nav>
            <router-link class="button" to="/">
                Home page
            </router-link>
            <router-link class="button" to="/about">
                About page
            </router-link>
        </nav>
        <nuxt></nuxt>
        <footer>
            THis is the footer
        </footer>
    </nuxt-container>
</template>

 

Github

 

posted @ 2016-12-06 18:03  Zhentiw  阅读(290)  评论(0编辑  收藏  举报