Nuxt/examples/custom-layouts/layouts/default.vue
2016-12-24 18:00:56 +01:00

16 lines
175 B
Vue

<template>
<div>
<img src="logo.png"/>
<nuxt/>
</div>
</template>
<style scoped>
img {
position: fixed;
top: 20px;
right: 20px;
z-index: 1000;
}
</style>