Update <head/><title/> to 'title' defined in config.yml

This commit is contained in:
Trae 2020-03-12 14:53:17 -05:00
parent 46fd4f4da1
commit 26221ad30c

1
app.js
View File

@ -20,6 +20,7 @@ const app = new Vue({
this.checkOffline();
try {
this.config = await this.getConfig();
document.title = this.config.title + ' | Homer';
} catch (error) {
this.offline = true;
}