Vue 지침 내에서 방법을 정의하는 방법은 무엇입니까?
Vue 지침 내에서 방법을 정의하는 방법은 무엇입니까? 디렉티브가 있는데 디렉티브 안에 로컬 메서드를 생성하여 훅 기능에 사용하고 싶었습니다.제 코드는 다음과 같습니다. export const OutsideClick = { bind (el, binding, vnode) { console.log(new Vue()); // call method1() }, componentUpdated(el, binding, vnode) { console.log('updated comp', binding); if(binding.value[1]()) { // call method1(); } }, unbind(el, binding, vnode) { console.log('unbinding'); } } 이 시점에서 명령어 내에서 ..