zpt
Version:
Zenon Page Templates - JS (ZPT-JS)
21 lines (18 loc) • 350 B
JavaScript
import { zpt } from '../../../index.js';
var dictionary = {
aString: "string",
doggy: false,
number1: 1,
number100: 100,
user: {
name: "Bob",
age: function( ){
return 25;
}
},
items: [ 'item0', 'item1', 'item2' ]
};
zpt.run({
root: document.body,
dictionary: dictionary
});