programing

vue-resize-direction이 실행되지 않는 이유는 무엇입니까?

minecode 2022. 7. 18. 22:36
반응형

vue-resize-direction이 실행되지 않는 이유는 무엇입니까?

요소의 크기 조정을 검출하는 .vue 컴포넌트 파일이 있는데 vue-resize-direction을 올바르게 배선하는 데 문제가 있습니다.

테스트하고 있는 요소는 테이블 바닥글입니다만, 같은 결과가 나왔습니다.div템플릿의 코드는 다음과 같습니다.

<tfoot><tr>
    <td :colspan="properties.length" v-resize="onResize"></td>
</tr></tfoot>

스크립트 파일에는 다음이 포함됩니다.

var resize = require('vue-resize-directive');
module.exports = {
  directives: { resize },
  methods: {
    onResize: function() {
        console.log("resized");
    }
  }
}

컴포넌트는 컴파일과 렌더링을 적절하게 수행합니다.div.resize-sensor디렉티브에 의해 추가된 요소이지만 테이블(또는 창 전체)의 크기를 변경해도 콘솔에 대한 로깅이나 경고 또는 오류는 발생하지 않습니다.

좋은 생각 있어요?

언급URL : https://stackoverflow.com/questions/43215233/why-is-vue-resize-directive-not-firing

반응형