vue.js 17
<html>
<head>
<title>
test17
</title>
</head>
<body>
<div id="app">
<a href="http://www.google.com">google</a>
<a href="http://www.naver.com" @click="prevent">naver</a>
<a href="http://www.daum.net" @click.prevent>daum</a>
</div>
<script src="https://cdn.jsdelivr.net/npm/vue"></script>
<script>
new Vue({
el:'#app',
methods:{
prevent:function(){
event.preventDefault();
}
}
})
</script>
</body>
</html>
댓글
댓글 쓰기