Aurelia 启动浏览器报错

Aurelia get-started browser error

我正在尝试 http://aurelia.io/get-started.html 项目,在安装所有内容后,我在 chrome 控制台中收到以下错误:

这是 Firefox 中的错误

知道了!

我在标记

中输入了 value.bond 而不是 value.bind

app.html:

<template>
  <section>
    <h2>${heading}</h2>

    <form role="form" submit.delegate="welcome()">
      <div class="form-group">
        <label for="fn">First Name</label>
        <input type="text" value.bond="firstName" class="form-control" id="fn" placeholder="first name">
      </div>
      <div class="form-group">
        <label for="ln">Last Name</label>
        <input type="text" value.bond="lastName" class="form-control" id="ln" placeholder="last name">
      </div>
      <div class="form-group">
        <label>Full Name</label>
        <p class="help-block">${fullName}</p>
      </div>
      <button type="submit" class="btn btn-default">Submit</button>
    </form>
  </section>
</template>