mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-13 17:43:59 +00:00
16 lines
345 B
Vue
16 lines
345 B
Vue
<template>
|
|
<div class="container">
|
|
<p><img src="~/assets/nuxt.png" /></p>
|
|
<p>This image is included as data:image/png;base64...</p>
|
|
<p>In the source code, the files generated are based on the build.filenames data.</p>
|
|
</div>
|
|
</template>
|
|
|
|
<style>
|
|
.container {
|
|
font-size: 20px;
|
|
text-align: center;
|
|
padding: 100px;
|
|
}
|
|
</style>
|