pinafore/src/routes/_pages/settings/about.html
Nolan Lawson b2583277eb
chore: update to webpack v5 (#1967)
The bundle size has decreased slightly, so I really can't complain.
2021-02-20 15:30:58 -08:00

23 lines
452 B
HTML

<SettingsLayout page='settings/about' label="{intl.aboutApp}">
<div>
<h1>{intl.aboutApp}</h1>
<h2>Version {version}</h2>
{@html intl.aboutAppDescription}
</div>
</SettingsLayout>
<script>
import SettingsLayout from '../../_components/settings/SettingsLayout.html'
const version = process.env.PINAFORE_VERSION
export default {
components: {
SettingsLayout
},
data: () => ({
version
})
}
</script>