added SprayGraph.vue

This commit is contained in:
2021-11-07 18:23:12 +01:00
committed by Giovanni Harting
parent a4e0878252
commit 2e456c7920
3 changed files with 103 additions and 26 deletions

View File

@@ -0,0 +1,26 @@
<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>