Skip to content

Commit

Permalink
RadioButton demo name fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tugcekucukoglu committed Oct 2, 2023
1 parent f7f17cc commit 7b6d458
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions doc/radiobutton/DynamicDoc.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<div class="card flex justify-content-center">
<div class="flex flex-column gap-3">
<div v-for="category in categories" :key="category.key" class="flex align-items-center">
<RadioButton v-model="selectedCategory" :inputId="category.key" name="pizza2" :value="category.name" />
<RadioButton v-model="selectedCategory" :inputId="category.key" name="dynamic" :value="category.name" />
<label :for="category.key" class="ml-2">{{ category.name }}</label>
</div>
</div>
Expand All @@ -27,7 +27,7 @@ export default {
code: {
basic: `
<div v-for="category in categories" :key="category.key" class="flex align-items-center">
<RadioButton v-model="selectedCategory" :inputId="category.key" name="pizza" :value="category.name" />
<RadioButton v-model="selectedCategory" :inputId="category.key" name="dynamic" :value="category.name" />
<label :for="category.key" class="ml-2">{{ category.name }}</label>
</div>
`,
Expand All @@ -36,7 +36,7 @@ export default {
<div class="card flex justify-content-center">
<div class="flex flex-column gap-3">
<div v-for="category in categories" :key="category.key" class="flex align-items-center">
<RadioButton v-model="selectedCategory" :inputId="category.key" name="pizza" :value="category.name" />
<RadioButton v-model="selectedCategory" :inputId="category.key" name="dynamic" :value="category.name" />
<label :for="category.key" class="ml-2">{{ category.name }}</label>
</div>
</div>
Expand All @@ -63,7 +63,7 @@ export default {
<div class="card flex justify-content-center">
<div class="flex flex-column gap-3">
<div v-for="category in categories" :key="category.key" class="flex align-items-center">
<RadioButton v-model="selectedCategory" :inputId="category.key" name="pizza" :value="category.name" />
<RadioButton v-model="selectedCategory" :inputId="category.key" name="dynamic" :value="category.name" />
<label :for="category.key" class="ml-2">{{ category.name }}</label>
</div>
</div>
Expand Down

0 comments on commit 7b6d458

Please sign in to comment.