Skip to content

Initial release

Choose a tag to compare

@matthewp matthewp released this 04 Oct 17:33
· 46 commits to master since this release

This is the first major release of can-observable-array, a package for creating arrays that react to changes. It is the list counterpart to can-observable-object.

import { ObservableArray } from "can";
import Person from "./person";

class PeopleList extends ObservableArray {
  static items = Person;
}