mirror of
https://github.com/PhotonVision/photonvision
synced 2026-06-30 02:31:40 +00:00
24 lines
431 B
Vue
24 lines
431 B
Vue
<template>
|
|
<div id="SystemTab">
|
|
<chInputNumber title="Enter Team Number"></chInputNumber>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import chInputNumber from './ch-inputNumber.vue'
|
|
export default {
|
|
name: 'SystemTab',
|
|
data() {
|
|
return {
|
|
value
|
|
}
|
|
},
|
|
components:{
|
|
chInputNumber
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="" scoped>
|
|
|
|
</style> |