mirror of
https://github.com/m1k1o/neko.git
synced 2024-07-24 14:40:50 +12:00
client fix build err.
This commit is contained in:
parent
085806d1b2
commit
c980409e3d
@ -153,8 +153,8 @@
|
||||
export default class extends Vue {
|
||||
private autoPassword = new URL(location.href).searchParams.get('pwd')
|
||||
|
||||
private displayname = ''
|
||||
private password = this.autoPassword
|
||||
private displayname: string = ''
|
||||
private password: string = this.autoPassword || ''
|
||||
|
||||
mounted() {
|
||||
if (this.$accessor.displayname !== '' && this.$accessor.password !== '') {
|
||||
@ -189,7 +189,11 @@
|
||||
|
||||
async login() {
|
||||
try {
|
||||
await this.$accessor.login({ displayname: this.displayname, password: this.password, })
|
||||
await this.$accessor.login({
|
||||
displayname: this.displayname,
|
||||
password: this.password,
|
||||
})
|
||||
|
||||
if (this.autoPassword) {
|
||||
this.removeUrlParam('pwd')
|
||||
this.autoPassword = ''
|
||||
|
Loading…
Reference in New Issue
Block a user