/* * account.ts * Copyright (C) 2024 veypi * 2024-10-22 22:07 * Distributed under terms of the GPL license. */ import Base from './base' export default class extends Base { doms: { [key: string]: HTMLElement } main: HTMLElement constructor() { super() this.main = this.build({ class: 'voa-account' }) let u = { username: 'asd', icon: 'https://public.veypi.com/img/avatar/0001.jpg' } this.main.innerHTML = `
my account
account center
昵称: ${u.username}
昵称: ${u.username}
昵称: ${u.username}
昵称: ${u.username}
` } }