upgrade from webpack to vite + typescript

This commit is contained in:
2022-03-18 11:40:43 +01:00
parent 0ccb76345e
commit 9a6d24193d
71 changed files with 8459 additions and 15632 deletions

View File

@@ -3,24 +3,25 @@
</template>
<script>
import {watch} from "vue";
import { watch } from "vue";
export default {
name: "SprayGraph",
props: {
spray: {
type: Object,
required: true
}
required: true,
},
},
setup(props) {
watch(() => props.spray, () => {
// console.log(props.spray)
})
}
}
watch(
() => props.spray,
() => {
// console.log(props.spray)
}
);
},
};
</script>
<style scoped lang="scss">
</style>
<style lang="scss" scoped></style>