···44 <h1>{{ `${$t('welcome')} ${$options.name}` }}</h1>
55 </header>
66 <section>
77- <p>{{ $config.siteDescription }}</p>
77+ <p>Mobile Safari detection is included in case you need to handle things differently for those users.</p>
88+ <p>The code included on <code>safari.client.js</code> will add <code>maximum-scale=1</code> to your <code>viewport</code> meta-tag, preventing the browser from automatically zooming in on form controls with a font-size smaller than 16px.</p>
89 </section>
910 </article>
1011</template>
···1213<script>
1314export default {
1415 name: 'PageHome',
1616+ computed: {
1717+ isSafariMobile () {
1818+ return this.$isSafariMobile
1919+ },
2020+ },
1521}
1622</script>