mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-18 06:44:46 -07:00
Add Page title to /kind/ pages
This commit is contained in:
parent
4ce21fa890
commit
4ff6b953af
1 changed files with 18 additions and 1 deletions
|
|
@ -56,10 +56,27 @@ export default {
|
||||||
},
|
},
|
||||||
supportedAppList () {
|
supportedAppList () {
|
||||||
return this.sectionAppList.filter(app => {
|
return this.sectionAppList.filter(app => {
|
||||||
console.log('app.status', app.status)
|
|
||||||
return app.status.includes('yes')
|
return app.status.includes('yes')
|
||||||
}).map(app => app.name)
|
}).map(app => app.name)
|
||||||
},
|
},
|
||||||
|
title () {
|
||||||
|
if (!this.section.label.includes('Tools')) return `List of ${this.section.label} Apps that work on Apple Silicon?`
|
||||||
|
|
||||||
|
return `List of ${this.section.label} that work on Apple Silicon?`
|
||||||
|
}
|
||||||
|
},
|
||||||
|
head() {
|
||||||
|
return {
|
||||||
|
title: this.title,
|
||||||
|
// meta: [
|
||||||
|
// // hid is used as unique identifier. Do not use `vmid` for it as it will not work
|
||||||
|
// {
|
||||||
|
// hid: 'description',
|
||||||
|
// name: 'description',
|
||||||
|
// content: 'My custom description'
|
||||||
|
// }
|
||||||
|
// ]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue