mirror of
https://github.com/hequan2017/seal.git
synced 2026-04-26 03:31:45 +08:00
12 lines
217 B
Python
12 lines
217 B
Python
new Vue({
|
|
el: '.login-main',
|
|
data: {
|
|
username: '',
|
|
password: ''
|
|
},
|
|
methods: {
|
|
login: function () {
|
|
document.getElementById('login-form').submit();
|
|
}
|
|
}
|
|
}) |