data: {
                    first: Math.ceil(Math.random() * 9),
                    second: Math.ceil(Math.random() * 9),
                    result: this.first * this.second,
                    result_bool: this.first * this.second === this.result ? "정답" : "오답"


                },


new Vue({el : "#app" ,data { }}).... 이런 구문인데 위와 같이 했는데 왜 안되는 지 아는사람?