input-ufo.vue 936 Bytes
<template>
  <CubeInput v-bind="$attrs" v-bind:value="value" v-on="inputListeners" :maxlength="8" class="input-number">
    <span slot="prepend">
      <slot name="prepend"></slot>
    </span>
    <span slot="append">
      <slot name="append"></slot>
    </span>
  </CubeInput>
</template>

<script>
import {Input} from 'cube-ui';

export default {
  name: 'InputUfo',
  props: ['value'],
  computed: {
    inputListeners() {
      return Object.assign({},
        this.$listeners,
        {
          input: (value) => {
            this.$emit('input', value);
          }
        }
      );
    }
  },
  components: {CubeInput: Input}
};
</script>

<style lang="scss">
.input-number {
  margin-bottom: 15px;
  background-color: #f5f5f5;
  border-radius: 10px;
  font-size: 40px;

  &:after {
    border-radius: 20px;
    border-color: #f5f5f5;
  }

  /deep/ .cube-input-field {
    font-weight: bold;
    color: #000;
  }
}
</style>