次の HTML スニペットがあるとします。
<div class="content" data-section-content></div>
それを次のような Ember ビューに置き換えたいと思います。
App.ContentView = Ember.View.extend({
tagName :"div",
classNames : ["content"],
... ( how can i add the >> data-section-content << to the view )
});
ビューにdata-section-contentを追加する最良の方法は何ですか?