added graph-component for crash

This commit is contained in:
Kostya
2024-02-01 22:44:36 +03:00
parent e1d9c63166
commit 8ea9373527
4 changed files with 162 additions and 112 deletions

View File

@@ -0,0 +1,11 @@
<template>
<crash-graph-component></crash-graph-component>
</template>
<script>
import CrashGraphComponent from "@/components/games-components/CrashGraphComponent.vue";
export default {
components: { CrashGraphComponent }
}
</script>