📝 Edit page
➕ Add page
Knockout
Topics
Pages
Content
Byline:Simplify dynamic JavaScript UIs with the Model-View-View Model (MVVM) pattern
Key links
- 🏠 Homepage: https://knockoutjs.com/
- 📗 Docs: https://knockoutjs.com/documentation/introduction.html
It looks like a light and simple UI library for managing elements and events declaratively, as in React and Vue.
Samples
Set one or more attributes on an HTML element using data-bind
and some JS code.
There are <span data-bind="text: myItems().length"></span> items
<button data-bind="enable: myItems().length < 5">Add</button>