ビューモデルにツールバー オブジェクトがあり、レンダリングされます。
var toolbar = {
items: [
{
location: 'before',
template: 'nav-button'
},
{
location: "before",
html: ko.observable(showCurrentDateTime()),
tabIndex: 1
},
{
location: "center",
text: "title",
},
{
location: "after",
html: "<img src='../images/logo.png'>"
}
]
};
ただし、次のようにオブジェクト項目のいずれかの内容を設定しようとすると、VS2013 で奇妙なエラーが発生します。
toolbar.items[1].html(showCurrentDateTime());
error: The property 'html' does not exist on value of type '{}'
ツールバーを正しく宣言/初期化するにはどうすればよいですか?
前もって感謝します