4 `paper-tabs` makes it easy to explore and switch between different views or functional aspects of
5 an app, or to browse categorized data sets.
7 Use `selected` property to get or set the selected tab.
12 <paper-tabs selected="0">
13 <paper-tab>TAB 1</paper-tab>
14 <paper-tab>TAB 2</paper-tab>
15 <paper-tab>TAB 3</paper-tab>
19 See <a href="#paper-tab">paper-tab</a> for more information about
22 A common usage for `paper-tabs` is to use it along with `iron-pages` to switch
23 between different views.
26 <paper-tabs selected="{{selected}}">
27 <paper-tab>Tab 1</paper-tab>
28 <paper-tab>Tab 2</paper-tab>
29 <paper-tab>Tab 3</paper-tab>
32 <iron-pages selected="{{selected}}">
39 To use links in tabs, add `link` attribute to `paper-tab` and put an `<a>`
40 element in `paper-tab`.
45 <paper-tabs selected="0">
47 <a href="#link1" class="horizontal center-center layout">TAB ONE</a>
50 <a href="#link2" class="horizontal center-center layout">TAB TWO</a>
53 <a href="#link3" class="horizontal center-center layout">TAB THREE</a>