在Vue中使用Form表單十分方便,可以快速地生成表單,同時也能夠通過v-model輕松實現(xiàn)數(shù)據雙向綁定。以下是一個基本的Form表單示例:
<template>
<form>
<div>
<label>用戶名</label>
<input type="text" v-model="username">
</div>
<div>
<label>密碼</label>
<input type="password" v-model="password">
</div>
<button type="submit" @click.prevent="submitForm">提交</button>
</form>
</template>
<script>
export default {
data() {
return {
username: '',
password: ''
}
},
methods: {
submitForm() {
console.log('表單提交成功')
}
}
}
</script>
在上面的代碼中,我們使用了Vue的v-model指令來實現(xiàn)數(shù)據雙向綁定,當用戶在輸入框中輸入內容時,對應的data屬性也會相應地更新。
在
如果需要增加更多的表單項,只需要在