We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8663831 commit 567b830Copy full SHA for 567b830
docs/features/interactions.md
@@ -9,16 +9,13 @@ const olympians = shallowRef([
9
{weight: 170, height: 2.21, sex: "male"}
10
]);
11
12
-onMounted(() => {
13
- d3.csv("../data/athletes.csv", d3.autoType).then((data) => (olympians.value = data));
14
-});
15
-
16
const penguins = shallowRef([
17
{culmen_length_mm: 32.1, culmen_depth_mm: 13.1},
18
{culmen_length_mm: 59.6, culmen_depth_mm: 21.5}
19
20
21
onMounted(() => {
+ d3.csv("../data/athletes.csv", d3.autoType).then((data) => (olympians.value = data));
22
d3.csv("../data/penguins.csv", d3.autoType).then((data) => (penguins.value = data));
23
});
24
0 commit comments