Skip to content

Commit

Permalink
SelectButton demo fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tugcekucukoglu committed Oct 18, 2023
1 parent e9663cc commit 29a7829
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/selectbutton/DisabledDoc.vue
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export default {
value2: null,
options1: ['Off', 'On'],
options2: [
{ name: 'Option 1', value: 1 },
{ name: 'Option 1', value: 1, constant: false },
{ name: 'Option 2', value: 2, constant: true }
]
}
Expand All @@ -64,7 +64,7 @@ const value1 = ref('Off');
const value2 = ref();
const options1 = ref(['Off', 'On']);
const options2 = ref([
{ name: 'Option 1', value: 1 },
{ name: 'Option 1', value: 1, constant: false },
{ name: 'Option 2', value: 2, constant: true }
]);
<\/script>
Expand Down

0 comments on commit 29a7829

Please sign in to comment.