mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-06 06:03:58 +00:00
16 lines
175 B
Vue
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>
|