本文將介紹如何使用Vue實現學生信息錄入,通過簡單易懂的代碼示例,幫助讀者快速了解Vue的基礎使用。
首先,需要在html中引入Vue庫文件:
接著,在Vue的data屬性中定義學生的信息:
new Vue({ el: '#app', data: { student: { name: '', age: '', gender: '', phone: '' } } })
在html中使用Vue的雙花括號語法將數據與表單元素綁定,使用戶輸入的值與Vue實例的data屬性中的值同步:
男女
最后,在Vue的methods屬性中定義添加學生的函數,將學生信息添加到數組中:
new Vue({ el: '#app', data: { student: { name: '', age: '', gender: '', phone: '' }, students: [] }, methods: { addStudent: function() { this.students.push({ name: this.student.name, age: this.student.age, gender: this.student.gender, phone: this.student.phone }); this.student.name = ''; this.student.age = ''; this.student.gender = ''; this.student.phone = ''; } } })
將上述代碼保存為一個HTML文件,使用瀏覽器打開,就可以進行學生信息錄入了。通過這個簡單的示例,讀者可以初步了解Vue的基礎語法和使用方法。