Not exactly. I'd still use subscribe but wouldn't create direct binding between the model and the form. Maybe an example will better illustrate. I'm just jotting this down and might not work out of the box.
in the route:
model.subscribe('articles.1', function(err, article) {
model.ref('_article', article);
model.set('_article_form', article.get());
page.render();
});
in the view:
<form x-bind=submit:updateArticle>
<input type=text value={_article_form.title}>
<textarea>{_article_form.body}</textarea>
</form>
in the controller:
exports.updateArticle = function(e) {
model.set('_article', model.get('_article_form'));