Skip to content
Snippets Groups Projects
Select Git revision
  • aac6d1d3cb6ab603ac90ef62253fe11ace92db8a
  • master default protected
  • feat/new-image-formats
  • clickable-select-chevron
  • 2.20.0
  • 2.19.0
  • 2.18.0
  • 2.17.0
  • 2.16.1
  • 2.16.0
  • 2.15.0
  • 2.14.0
  • 2.13.0
  • 2.12.1
  • 2.11.0
  • 2.10.0
  • 2.9.1
  • 2.9.0
  • 2.8.0
  • 2.7.1
  • 2.7.0
  • 2.6.0
  • 2.5.2
  • 2.5.1
24 results

UiApp.vue

Blame
  • CardProgram.vue 771 B
    <script setup>
      import CardProgramItem from "./CardProgramItem"
    </script>
    
    <template>
      <div class="bg-pirati-yellow py-16">
        <div class="container--wide">
          <h2 class="head-14xl head-compact mb-8">{{ label }}</h2>
    
          <ul
            class="
              flex gap-3 w-full flex-col
    
              xl:flex-row
            "
          >
            <CardProgramItem
              v-for="(point, index) in points"
              :key="point.slug"
              :slug="point.slug"
              :defaultIsOpen="index === 0"
              :number="point.number"
              :title="point.title"
              :content="point.content"
              :points="point.points"
            />
          </ul>
        </div>
      </div>
    </template>
    
    <script>
    export default {
      name: "CardProgram",
      props: ["points", "label"],
    }
    </script>