forked from CSGOWTF/csgowtf
27 lines
370 B
Vue
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>
|