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

<script>
export default {
name:"number-input"
}
</script>
<template>
<el-input-number style="width: 100%;margin-top: -5px;" v-on="$listeners" v-bind="$attrs" :controls="false"></el-input-number>
</template>
<style scoped>
.el-input-number /deep/ .el-input__inner{
text-align: right;
padding-right: 5px !important;
}
</style>