Nuxt/examples/with-apollo/layouts/default.vue
2017-04-11 13:15:31 -05:00

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>