This repository was archived by the owner on Oct 1, 2025. It is now read-only.

Description
According to the documentation to disable titleTemplate you should do
<template>
<div id="page">
<h1>Home Page</h1>
</div>
</template>
<script>
export default {
name: 'Home',
metaInfo: {
title: 'My Awesome Webapp',
// override the parent template and just use the above title only
titleTemplate: null
}
}
</script>
But the type definition is MetaInfo.titleTemplate?: string | ((titleChunk: string) => string) | undefined