wenbobowen 4 년 전
부모
커밋
04e791e97b
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      src/components/input/textArea.vue

+ 2 - 1
src/components/input/textArea.vue

@@ -90,7 +90,7 @@ export default {
     return {
       fullScreen: false,
       loading: false,
-      inputValue: '',
+      inputValue: this.value,
       edit: false,
       init: {
         auto_focus: true,
@@ -122,6 +122,7 @@ export default {
     inputValue: {
       handler(newV, oldV) {
         // this.inputValue = newV
+        console.log(newV, oldV)
         this.resetImgSrc(newV)
       },
       immediate: true