Files
PhotonVision/chameleon-client/src/components/SystemTab.vue

47 lines
1.0 KiB
Vue
Raw Normal View History

<template>
2019-03-20 22:35:02 +02:00
<div id="SystemTab">
2019-04-23 14:42:51 -07:00
<chInputNumber title="Enter Team Number" Xkey="teamValue"></chInputNumber>
<Divider class="divdiv" orientation="left">Networking</Divider>
<div>
<RadioGroup v-model="lan" style="display: flex;">
<Radio label="DHCP"></Radio>
<Radio label="Static"></Radio>
</RadioGroup>
<!--
ip
subnetmask
gateway
hostname -->
</div>
2019-03-20 22:35:02 +02:00
</div>
</template>
<script>
2019-03-20 22:35:02 +02:00
import chInputNumber from './ch-inputNumber.vue'
export default {
2019-03-20 22:35:02 +02:00
name: 'SystemTab',
data() {
return {
2019-04-23 14:42:51 -07:00
lan:0
}
2019-03-20 22:35:02 +02:00
},
components:{
chInputNumber
},
methods: {
}
}
</script>
2019-04-23 14:42:51 -07:00
<style>
.ivu-divider-inner-text{
color: aliceblue
}
.ivu-radio-group {
display: flex;
text-align: left;
color: aliceblue;
}
</style>