mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-13 09:33:54 +00:00
20 lines
401 B
Vue
20 lines
401 B
Vue
|
<template>
|
||
|
<div>
|
||
|
<h1 @click="$router.push('/')">Nuxt.js + Apollo</h1>
|
||
|
<nuxt/>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<style>
|
||
|
|
||
|
body {
|
||
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
||
|
padding: 30px;
|
||
|
}
|
||
|
|
||
|
h1 {
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
|
||
|
</style>
|