允许页面可以自定义标题

This commit is contained in:
aixianling
2022-11-11 09:30:35 +08:00
parent cd154b48cf
commit f593db72f0

View File

@@ -32,6 +32,10 @@ class PageBase {
this.label = appName.replace(/(appName:|["'])/g, '')?.trim()
}
}
setName(name) {
this.name = name
}
}
module.exports = PageBase