Service Provider
Provider Key
const service = new wire.data.DataSource("indexed-db", {
...
});Configuration
Name
Description
Stores
Name
Description
const fruits = [
{ name: "grapes", color: "green"},
{ name: "bananas", color: "yellow"},
{ name: "apples", color: "red"},
];
const source = new wire.data.DataSource("indexed-db", {
Provider: {
stores: [
{ name: "My Store", data: fruits }
]}
});Allow
Name
Supports
Last updated