Files
csgowtf/src/components/SprayGraph.vue
2022-01-30 20:21:58 +01:00

27 lines
370 B
Vue

<template>
<h3>This Graph will be available soon</h3>
</template>
<script>
import {watch} from "vue";
export default {
name: "SprayGraph",
props: {
spray: {
type: Object,
required: true
}
},
setup(props) {
watch(() => props.spray, () => {
// console.log(props.spray)
})
}
}
</script>
<style scoped lang="scss">
</style>