-
Notifications
You must be signed in to change notification settings - Fork 292
/
Copy pathapp.vue
45 lines (45 loc) · 1.23 KB
/
app.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<template>
<NuxtLayout>
<!-- https://image.nuxt.com/usage/nuxt-img -->
<figure class="mb-8">
<NuxtImg
src="/images/mountains_1.jpg"
:placeholder="[30, 20]"
width="300"
height="200"
class="rounded"
/>
<figcaption class="text-gray-600 text-xs mt-3">
Photo by <a
href="https://unsplash.com/@vorosbenisop"
target="_blank"
class="underline"
>Benjamin Voros</a> on <a
href="https://unsplash.com/s/photos/mountain"
target="_blank"
class="underline"
>Unsplash</a>.
</figcaption>
</figure>
<!-- https://image.nuxt.com/usage/nuxt-picture -->
<figure>
<NuxtPicture
src="/images/mountains_2.jpg"
width="3750"
height="2500"
sizes="xs:200px md:500px lg:1024"
/>
<figcaption class="text-gray-600 text-xs mt-3">
Photo by <a
href="https://unsplash.com/@kydroon"
target="_blank"
class="underline"
>Kurt Cotoaga</a> on <a
href="https://unsplash.com/s/photos/mountain"
target="_blank"
class="underline"
>Unsplash</a>.
</figcaption>
</figure>
</NuxtLayout>
</template>