[Vuejs]-ReferenceError: definePageMeta is not defined

0👍

I had the same problem. I used the "export default" code variant instead of "definePageMeta":

<script lang="ts">
export default {
  layout: 'no-header',
}
</script>

I’m not really sure why this is working, but maybe someone can add a hint.

Leave a comment