您的位置:首页 > 产品设计 > UI/UE

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

2016-12-06 18:03 921 查看
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>




内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: