Skip to content

Commit

Permalink
Document color-select component
Browse files Browse the repository at this point in the history
  • Loading branch information
caleeli committed Feb 14, 2024
1 parent 273d2ef commit af551f8
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion src/components/inspector/color-select.vue
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,24 @@
<script>
export default {
components: {},
props: ["label", "value", "helper", "options"],
props: {
/**
* The label for the color select
*/
label: {},
/**
* The value of the color select. eg. `alert alert-success`
*/
value: {},
/**
* The helper text for the color select (not visible yet)
*/
helper: {},
/**
* The options for the color select
*/
options: {},
},
data() {
return {
newColor: ""
Expand Down

0 comments on commit af551f8

Please sign in to comment.