mirror of
https://github.com/optilude/xlsx-template.git
synced 2026-07-02 00:17:39 +08:00
Fix dates array declaration in example data
This commit is contained in:
@@ -86,7 +86,7 @@ To make this magic happen, you need some code like this:
|
||||
// Set up some placeholder values matching the placeholders in the template
|
||||
var values = {
|
||||
extractDate: new Date(),
|
||||
dates: new Date("2013-06-01"), new Date("2013-06-02"), new Date("2013-06-03"),
|
||||
dates: [ new Date("2013-06-01"), new Date("2013-06-02"), new Date("2013-06-03") ],
|
||||
people: [
|
||||
{name: "John Smith", age: 20},
|
||||
{name: "Bob Johnson", age: 22}
|
||||
|
||||
Reference in New Issue
Block a user