html - paper-button doesn't work, where is the mistake? -
i learning polymer. want link paper-button, doesn't work. mistake?
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>polymer</title> <script src="bower_components/webcomponentsjs/webcomponents.js"></script> <link rel="import" href="bower_components/polymer/polymer.html"> <link rel="import" href="bower_components/paper-button/paper-button.html"> </head> <body> <paper-button>flat button</paper-button> </body> </html>
you code working proper bower configuration. here single module installed, guess problem:
bower install polymer/paper-elements
this documented in guide using elements of polymer project.
Comments
Post a Comment