vue之form提交

<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>helloform_Vue</title>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <script src="./vue.js"></script>
    </head>
    <body>
	<div class="hello">
		<ul>
			<form @submit.prevent="submit">
				<input type="text" name="name" v-model="inputtext.name">
				<input type="password" name="password" v-model="inputtext.password">
				<input type="submit" value="提交">
			</form>
		</ul>
	</div>
	<script>
		var vm = new Vue({
			el: '.hello',
			data: {
				
				inputtext:{}
			},
			methods: {
				submit: function() {
					console.log(this.inputtext);
				}
			},
		})
	</script>

	</body>
</html>

猜你喜欢

转载自blog.csdn.net/u010674395/article/details/73028691