ReCast is a multi platform restreaming tool, you can stream with one servers to multiple services
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

47 lines
1.2 KiB

<template>
<div class="form-group" :class="{'input-group': hasIcon}">
<slot name="label">
<label v-if="label" class="control-label">
{{label}}
</label>
</slot>
<slot name="addonLeft">
<span v-if="addonLeftIcon" class="input-group-addon">
<i :class="addonLeftIcon"></i>
</span>
</slot>
<input
:value="value"
@input="$emit('input',$event.target.value)"
v-bind="$attrs"
class="form-control"
aria-describedby="addon-right addon-left">
<slot></slot>
<slot name="addonRight">
<span v-if="addonRightIcon" class="input-group-addon">
<i :class="addonRightIcon"></i>
</span>
</slot>
</div>
</template>
<script>
export default {
inheritAttrs: false,
name: 'fg-input',
props: {
label: String,
value: [String, Number],
addonRightIcon: String,
addonLeftIcon: String
},
computed: {
hasIcon () {
const {addonRight, addonLeft} = this.$slots
return addonRight !== undefined || addonLeft !== undefined || this.addonRightIcon !== undefined || this.addonLeftIcon !== undefined
}
}
}
</script>
<style>
</style>