๐Ÿ“ฆ vuetifyjs / flairo-theme

๐Ÿ“„ BlogHeader.vue ยท 24 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24<script setup lang="ts">
</script>

<template>
  <Section
    id="blog-header"
    class="px-3"
    space="4"
  >
    <BlogHeading
      :date="new Date().toLocaleDateString()"
      author="Martin Flox"
      color="offblock"
      comment-count=""
      size="text-h5"
      title="Lorem ipsum dolor sit amet, consectetur adipiscing elit."
    />
  </Section>
</template>

<style lang="scss" scoped>

</style>