OLD | NEW |
1 --- | 1 --- |
2 layout: default | 2 layout: default |
3 title: "Define a Custom Element" | 3 title: "Define a Custom Element" |
4 description: "Create a custom HTML element using Polymer." | 4 description: "Create a custom HTML element using Polymer." |
5 has-permalinks: true | 5 has-permalinks: true |
6 tutorial: | 6 tutorial: |
7 id: polymer-intro | 7 id: polymer-intro |
8 next: fetchdata | 8 next: futures/ |
9 next-title: "Fetch Data Dynamically" | 9 next-title: "Use Future-Based APIs" |
10 prev: shared-pkgs | 10 prev: shared-pkgs/ |
11 prev-title: "Install Shared Packages" | 11 prev-title: "Install Shared Packages" |
12 --- | 12 --- |
13 | 13 |
14 {% capture whats_the_point %} | 14 {% capture whats_the_point %} |
15 | 15 |
16 * Polymer.dart is the next evolution of Web UI. | 16 * Polymer.dart is the next evolution of Web UI. |
17 * Everything in Polymer.dart is an element. | 17 * Everything in Polymer.dart is an element. |
18 * Custom elements provide semantically meaningful encapsulation. | 18 * Custom elements provide semantically meaningful encapsulation. |
19 * Use Polymer.dart to build custom elements. | 19 * Use Polymer.dart to build custom elements. |
20 * Bind Dart data to HTML elements. | 20 * Bind Dart data to HTML elements. |
(...skipping 509 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
530 | 530 |
531 The next tutorial, | 531 The next tutorial, |
532 [Fetch Data Dynamically](/docs/tutorials/fetchdata/), | 532 [Fetch Data Dynamically](/docs/tutorials/fetchdata/), |
533 shows you how to fetch data | 533 shows you how to fetch data |
534 and use JSON to encode and decode | 534 and use JSON to encode and decode |
535 that data. | 535 that data. |
536 | 536 |
537 {% endcapture %} | 537 {% endcapture %} |
538 | 538 |
539 {% include tutorial.html %} | 539 {% include tutorial.html %} |
OLD | NEW |