< html > < head > < title > test3 </ title > </ head > < body > < div id = 'app' > < button @click = "changeValue" > Click Here!! </ button > < p > {{value}} </ p > </ div > < script src = "https://cdn.jsdelivr.net/npm/vue" > < / script > < script > new Vue ({ el: '#app' , data: { value: 0 }, methods: { changeValue : function (){ this . value = Math . random () } } }) < / script > </ body > </ html >
댓글
댓글 쓰기