sheetjs-csp-test/app-rjs-local.js

10 lines
169 B
JavaScript
Raw Permalink Normal View History

2023-06-25 04:01:34 +00:00
requirejs.config({
paths: {
xlsx: [ './xlsx.full.min' ]
}
});
require(['xlsx'], function(XLSX) {
document.getElementById("app").innerText = XLSX.version;
});