Vue 인스턴스에서 글로벌 믹스인 메서드를 사용하는 방법 Global Mixin을 사용하여 Vue를 사용하여 글로벌 도우미 메서드를 작성하는 경우 다음과 같은 상황이 발생한다고 가정합니다. import Vue from "vue"; Vue.mixin({ methods: { replaceString: function (word) { return word.toLowerCase().replace(/\W/g, ''); } } }); let vm = new Vue({ methods: { doSomething: function() { console.log(this.replaceString('Hello World'); //helloword } } }); 다른 메서드, 컴포넌트 및 그 자식 내부에서 메서드를 호출할 수 ..