Is it possible to use AngularJS syntax for declaring bindings while using the KnockoutJS library? For example:
Today's message is: <span data-bind="visible:true,text:myMessage"></span>
I wish to utilize {{}}
notation, similar to Angular, like this:
Today's message is: <span {{visible:true,text:myMessage}}></span>
How can I update data-bind
attributes to use {{}}
based syntax in KnockoutJS?