728x90
<template>
<div>
<h1>{{ mesg }}</h1>
<form action="target.html" @submit="prevent"> <!-- public -->
<button>전송</button>
</form>
</div>
</template>
<script>
export default {
props:{
mesg:String,
},
methods:{
prevent:function(e){
e.preventDefault(); //페이지 이동 X
},
},
}
</script>
<style>
</style>
'단순 코드 기록 > Vue' 카테고리의 다른 글
Vue_개별 삭제, 선택 삭제 (0) | 2024.03.08 |
---|---|
Vue_다이나믹 함수 (0) | 2024.03.08 |
Vue_Event (0) | 2024.03.08 |
Vue_Calculator응용 (0) | 2024.03.08 |
Vue_Watch(자동 호출 함수) (0) | 2024.03.07 |