Skip to content
  • Projects
  • Groups
  • Snippets
  • Help

Clara Sista Widhiastuti / PraRegistrasi

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • PraRegistrasi
  • ..
  • radio
  • DemoRadioBasic.vue
  • claraa26's avatar
    horizontal navbar and color change · 02b9b2a8
    claraa26 committed 2 months ago
    02b9b2a8
DemoRadioBasic.vue 271 Bytes
BlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<script setup>
const radioGroup = ref(1)
</script>

<template>
  <div class="">
    <VRadioGroup v-model="radioGroup">
      <VRadio
        v-for="n in 2"
        :key="n"
        :label="`Radio ${n}`"
        :value="n"
      />
    </VRadioGroup>
  </div>
</template>