* implement wellness settings fixes #1192 Adds - grayscale mode (as well as separate grayscale/dark grayscale themes) - disable follower/boost/fav counts (follower counts capped at 10) - disable unread notification count (red dot) * fix lint * fix crawler
20 lines
405 B
HTML
20 lines
405 B
HTML
<Title name="Wellness Settings" settingsPage={true} />
|
|
|
|
<LazyPage {pageComponent} {params} />
|
|
|
|
<script>
|
|
import Title from '../_components/Title.html'
|
|
import LazyPage from '../_components/LazyPage.html'
|
|
import pageComponent from '../_pages/settings/wellness.html'
|
|
|
|
export default {
|
|
components: {
|
|
|
|
Title,
|
|
LazyPage
|
|
},
|
|
data: () => ({
|
|
pageComponent
|
|
})
|
|
}
|
|
</script>
|