Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for datalist-like presets #35

Open
smares opened this issue May 9, 2018 · 0 comments
Open

Add support for datalist-like presets #35

smares opened this issue May 9, 2018 · 0 comments

Comments

@smares
Copy link

smares commented May 9, 2018

Some browsers currently support combining the HTML5 range element with a datalist element, something like

<input type="range" list="numbers" />
<datalist id="numbers">
  <option>10</option>
  <option>15</option>
  <option>30</option>
  <option>50</option>
  <option>90</option>
</datalist>

Would it be possible to add a property to vue-range-slider where one can pass an array of possible values, something like :list="[10, 15, 30, 50, 90]"?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant