mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-17 19:25:13 +00:00
22 lines
263 B
Vue
22 lines
263 B
Vue
|
<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>
|