mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
16 lines
197 B
Vue
16 lines
197 B
Vue
|
<template>
|
||
|
<nuxt-container>
|
||
|
<img src="logo.png"/>
|
||
|
<nuxt/>
|
||
|
</nuxt-container>
|
||
|
</template>
|
||
|
|
||
|
<style scoped>
|
||
|
img {
|
||
|
position: fixed;
|
||
|
top: 20px;
|
||
|
right: 20px;
|
||
|
z-index: 1000;
|
||
|
}
|
||
|
</style>
|