19 lines
402 B
JavaScript
19 lines
402 B
JavaScript
export default class {
|
|
constructor() {
|
|
// 初始化状态, 连接, 确认登录状态
|
|
this.title = "Kana"
|
|
this.info = "站点信息"
|
|
this.account = 'account'
|
|
}
|
|
// 对像的增删改查
|
|
}
|
|
|
|
class account {
|
|
constructor() {
|
|
this.name = "Last"
|
|
this.avatar = "xxxxxx"
|
|
this.createdAt = "是创建时间"
|
|
this.createdAt_fmt = "是格式化时间, 有很多格式"
|
|
}
|
|
}
|