How do I get <paper-textarea> working in Polymer 2.x? It doesn't appear at all. What am I doing wrong? A working demo would be wonderful.
<!DOCTYPE html>
<html>
<head>
<base href="//polygit.org/components/">
<link rel="import" href="polymer/polymer.html">
<script src="webcomponentsjs/webcomponents-lite.js"></script>
<link rel="import" href="paper-input/paper-textarea.html">
</head>
<body>
<paper-textarea label="Hello world"></paper-textarea>
</body>
</html>
<paper-textarea>still works in Polymer 2.x, and your code would work with local HTML imports. The reason the JSBin demo doesn't appear is due to the deprecation (and disabling) of Polygit, as shown on http://polygit.org:You'll also notice network failures in the console from your JSBin demo.
You can replace the Polygit URL in
<base>withhttps://cdn.rawgit.com/download/polymer-cdn/2.6.0.2/lib/to see it working: