<Head> component

Powered by @vueuse/head, now Vulmix allows to use the auto-imported <Head> component to change the page title for example like this:

page/test-page.vue
<template>    <Head>        <title>            My page        </title>    </Head>    <!-- Page content goes here --></template>

So, when we navigate to this page, we get the title:

image

Check the VueUse/Head documentation for more info.