Change naming and veriy test-scheduler function
[bottlenecks.git] / test-scheduler / ui / src / components / env_component / base_input.vue
1 <template>
2     <div class="form-group">
3         <label class="col-lg-3 control-label">{{ name }}</label>
4         <div class="col-lg-7">
5             <input type="text" class="form-control" v-bind:value="value" v-on:input="$emit('input', $event.target.value)">
6         </div>
7     </div>
8 </template>
9 <script>
10 export default {
11     props: ['name', 'value'],
12     data: function() {
13         return {
14             inputName: this.name,
15             inputValue: this.value,
16             fake: "abc"
17         }
18     }
19 }
20 </script>