Replies: 1 comment 4 replies
-
Seems like prefix with Read more at: vuejs/vue#1177 |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I tried limiting the possible minute options that could be selected with the
ui.time
component by using this:It partially worked, but for some reason the minutes between 0 and 5 minutes were still select-able.
I then figured out the issue was that the prop should be prefixed with a colon (
:
), i.e.:minute-options='[0,15,30,45]'
.This resolved my issue, but I have two questions:
'[0,15,30,45]'
instead of[0,15,30,45]
otherwise the prop is completely ignored?Beta Was this translation helpful? Give feedback.
All reactions