forked from CSGOWTF/csgowtf
28 lines
397 B
Vue
28 lines
397 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 lang="scss" scoped></style>
|