<div id="app">
<button v-on:[dynamicevent]="asdf">Hello</button>
</div>
<script type="module">
createApp({
data() {
return {
dynamicevent: "click",
}
},
methods: {
asdf() {
alert('asdf');
}
}
}).mount('#app')
</script>
<style scoped>
#wow {
color: red;
}
.wrapper {
background-color: black;
}
</style>
버튼 눌렀을 때 alert가 안 뜨는 이유가 무엇일까요
콘솔에 뭐 에러안뜸? - dc App