Files
perspective-dev--perspective/rust/perspective-viewer/test/html/superstore-inline.html
T
2026-07-13 12:25:07 +08:00

29 lines
1.2 KiB
HTML

<!doctype html>
<html>
<head>
<script type="module">
import "/node_modules/@perspective-dev/viewer/dist/esm/perspective-viewer.inline.js";
import perspective from "/node_modules/@perspective-dev/client/dist/cdn/perspective.js";
async function load() {
let resp = await fetch("/node_modules/@perspective-dev/test/assets/superstore.csv");
let csv = await resp.text();
const viewer = document.querySelector("perspective-viewer");
const worker = await perspective.worker();
const table = worker.table(csv, { index: "Row ID" });
await viewer.load(table);
window.__TEST_WORKER__ = worker;
}
await load();
window.__TEST_PERSPECTIVE_READY__ = true;
</script>
<link rel="stylesheet" href="../css/demo.css" />
<link rel="stylesheet" href="/node_modules/@perspective-dev/viewer/dist/css/pro.css" />
<link rel="stylesheet" href="/node_modules/@fontsource/roboto-mono/400.css" />
</head>
<body>
<perspective-viewer></perspective-viewer>
</body>
</html>