mirror of
https://github.com/PhotonVision/photonvision
synced 2026-07-02 02:51:40 +00:00
30 lines
617 B
Vue
30 lines
617 B
Vue
|
|
<template>
|
||
|
|
<div>
|
||
|
|
<v-row align="center" justify="start">
|
||
|
|
<v-col style="padding-right:0" :cols="3">
|
||
|
|
<v-btn small color="#4baf62" @click="takePoint">Take Point</v-btn>
|
||
|
|
</v-col>
|
||
|
|
<v-col>
|
||
|
|
<v-btn small @click="clearPoint" color="yellow darken-3">Clear Point</v-btn>
|
||
|
|
</v-col>
|
||
|
|
</v-row>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
export default {
|
||
|
|
name: "SingleCalibration",
|
||
|
|
methods:{
|
||
|
|
clearPoint(){
|
||
|
|
|
||
|
|
},
|
||
|
|
takePoint(){
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style scoped>
|
||
|
|
|
||
|
|
</style>
|