1

I'm trying to startup a Dart Polymer project using the pub pacakage manager. I'm using Eric Bidelman's scaffolding page example as an example because it's quite what I need. . And while I have added the

<link rel="import" href="../packages/polymer/polymer.html">

it still will throw the following error on the is="autobinding"-attribute of the template element:

custom element with name "auto-binding" not found. See http://goo.gl/5HPeuP#polymer_11 for details.

Can anyone point me in the right direction because as far as I can see in the documentation of the auto-binding property a polymer.html import is sufficient for the is-attribute to work

Günter Zöchbauer
  • 623,577
  • 216
  • 2,003
  • 1,567
Dani
  • 2,448
  • 8
  • 27
  • 44

1 Answers1

1

In Dart the equivalent element is auto-binding-dart instead of auto-binding. See Data binding fails with Dart for an example.

Community
  • 1
  • 1
Günter Zöchbauer
  • 623,577
  • 216
  • 2,003
  • 1,567