Dani
Dani

Reputation: 2488

template is not auto-binding

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

Upvotes: 1

Views: 238

Answers (1)

G&#252;nter Z&#246;chbauer
G&#252;nter Z&#246;chbauer

Reputation: 657308

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

Upvotes: 1

Related Questions