@@ -50,10 +50,14 @@ export default {
}
},
watch:{
- value(){
- if(this.value){
- this.unit = this.getUnitTrans(this.value)
- }
+ value:{
+ handler(){
+ if(this.value){
+ console.log('value',this.value)
+ this.unit = this.getUnitTrans(this.value)
+ }
+ },
+ immediate:true
data() {