This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<require from="./auto-width"></require> | |
<div auto-width.bind="inputValue1"> | |
<select md-select value.two-way="inputValue1"> | |
<option value="" disabled selected>select an item</option> | |
<option value="item 1">item 1</option> | |
<option value="item longer">item longer</option> | |
<option value="item even longer">item even longer</option> | |
</select> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<require from="material-components-web/dist/material-components-web.css"></require> | |
<mdc-toolbar> | |
<mdc-toolbar-row> | |
<mdc-toolbar-section start="true"> | |
<button class="mdc-toolbar__menu-icon" mdc-ripple><i class="material-icons">close</i></button> | |
<mdc-toolbar-title>Button tags with child icon tag</mdc-toolbar-title> | |
</mdc-toolbar-section> | |