2024-03-22 18:34:38 +08:00
|
|
|
import pie from "./template/pie"
|
|
|
|
|
import line from "./template/line";
|
|
|
|
|
import bar from "./template/bar";
|
2024-04-18 19:17:17 +08:00
|
|
|
import graph from "./template/graph";
|
2022-06-28 18:18:37 +08:00
|
|
|
|
|
|
|
|
export default {
|
2024-04-18 19:17:17 +08:00
|
|
|
...bar, ...line, ...pie, ...graph
|
2022-06-28 18:18:37 +08:00
|
|
|
}
|
2024-04-18 19:17:17 +08:00
|
|
|
|