plm前端
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.

16 lines
343 B

  1. <script>
  2. export default {
  3. name:"number-input"
  4. }
  5. </script>
  6. <template>
  7. <el-input-number style="width: 100%;margin-top: -5px;" v-on="$listeners" v-bind="$attrs" :controls="false"></el-input-number>
  8. </template>
  9. <style scoped>
  10. .el-input-number /deep/ .el-input__inner{
  11. text-align: right;
  12. padding-right: 5px !important;
  13. }
  14. </style>