vuejs 구성 요소에서 생성된 후크에서 메서드 호출 다음 (부분) 코드를 가진 구성 요소가 있다. export default { methods: { mymethod: (x) => {alert(x)}, }, created: () => { this.mymethod('success'); }, 그리고 나는 다음 오류를 받고 있다. vue.esm.js?efeb:578 [Vue warn]: Error in created hook: "TypeError: Cannot read property 'mymethod' of undefined" 구성 요소의 vue 인스턴스에 대해 "이것"이 평가되지 않는 것처럼 보일 수 있다.그리고 아이디어는 이것을 어떻게 할 수 있을까?Vue 메서드, 수명 주기 메서드, 계산된 속성 등을 ..