1
0
mirror of https://github.com/d3/d3.git synced 2026-02-01 16:41:44 +00:00
This commit is contained in:
Mike Bostock 2023-06-09 21:36:28 -07:00
parent 0ba7e39f9f
commit b341b5ff4e
No known key found for this signature in database
GPG Key ID: C6817CA4CDEC8FDB

View File

@ -8,7 +8,7 @@ import PlotRender from "./components/PlotRender.js";
const volcano = shallowRef({values: [], width: 0, height: 0});
onMounted(() => {
d3.json("../data/volcano.json").then((data) => (volcano.value = data));
d3.json("./data/volcano.json").then((data) => (volcano.value = data));
});
</script>