2015-04-26 61 views

回答

0

Got it!

我鍵入的值。 債券而不是價值。 綁定在標記

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>