๐Ÿ“ฆ vuetifyjs / flairo-theme

๐Ÿ“„ BlogAsset.vue ยท 22 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22<script setup lang="ts">
  import FedericoResPiniImg from '@/assets/federico-respini-sYffw0LNr7s-unsplash.jpg'
</script>

<template>
  <Section
    id="blog-asset"
    class="px-3"
    space="4"
  >
    <v-img
      :src="FedericoResPiniImg"
      min-height="400px"
      cover
    />
  </Section>
</template>

<style lang="scss" scoped>

</style>