Add more examples
This commit is contained in:
parent
2f2db6edc6
commit
a40bdcb56c
1 changed files with 31 additions and 0 deletions
31
index.html
31
index.html
|
@ -60,6 +60,37 @@
|
|||
<button title="Log form data to dev console">Submit</button>
|
||||
</form>
|
||||
|
||||
<details open>
|
||||
<summary>More examples</summary>
|
||||
<form>
|
||||
<label>
|
||||
<span>No Search</span>
|
||||
<better-select>
|
||||
<span slot="placeholder">Placeholder...</span>
|
||||
<option value="first">First value</option>
|
||||
<option value="second">Second value</option>
|
||||
<option value="third">Third value</option>
|
||||
</better-select>
|
||||
</label>
|
||||
<label>
|
||||
<span>No Placeholder</span>
|
||||
<better-select>
|
||||
<option value="first">First value</option>
|
||||
<option value="second">Second value</option>
|
||||
<option value="third">Third value</option>
|
||||
</better-select>
|
||||
</label>
|
||||
<label>
|
||||
<span>Pre-Selected Option</span>
|
||||
<better-select>
|
||||
<option value="first">First value</option>
|
||||
<option value="second" selected>Second value</option>
|
||||
<option value="third">Third value</option>
|
||||
</better-select>
|
||||
</label>
|
||||
</form>
|
||||
</details>
|
||||
|
||||
<vertical-spacer triple></vertical-spacer>
|
||||
|
||||
<md-block src="readme.md">
|
||||
|
|
Loading…
Reference in a new issue