mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
21 lines
366 B
Vue
21 lines
366 B
Vue
|
<template>
|
||
|
<div>
|
||
|
<img src="~/assets/logo.svg" class="h-20 mb-4">
|
||
|
<img src="/public.svg" class="h-20 mb-4">
|
||
|
<img :src="logo" class="h-20 mb-4">
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script setup>
|
||
|
import logo from '~/assets/logo.svg'
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
#__nuxt {
|
||
|
background-image: url('~/assets/logo.svg');
|
||
|
}
|
||
|
body {
|
||
|
background-image: url('/public.svg');
|
||
|
}
|
||
|
</style>
|