Nuxt/test/fixtures/full-static/layouts/default.vue

22 lines
263 B
Vue
Raw Normal View History

<template>
<div>
<NLink to="/">
Home
</NLink>
<NLink to="/store">
Store
</NLink>
<NLink to="/pagination/1">
Pagination
</NLink>
<br>
<Nuxt />
</div>
</template>
<style scoped>
a {
margin: 0 1em;
}
</style>