**๐ The bug** I can't pass an object to the template after updating the version from 0.32.0 to 0.33.0. **๐ ๏ธ To reproduce** in `{root}/components/Header.vue` ```vue <template> <div> <nuxt-link v-for="page in data.pages" :key="page.title" :to="page.to"> {{ page.title }} </nuxt-link> </div> </template> <script> import { defineComponent } from '@nuxtjs/composition-api' export default defineComponent({ setup() { return { data: { pages: [ { title: 'Title 1', to: 'To 1' }, { title: 'Title 2', to: 'To 2' }, ], }, } }, }) </script> ``` I got this error: `Cannot read properties of undefined (reading 'pages')` My project is public. The original repository [here](https://github.com/emretepedev/emretepedev.github.io/blob/25c23c1d7b4ecba01f1f69ad6f52172355bdd1c4/components/Header.vue#L49). **๐ Expected behaviour** I would expect it to work as it did in version 0.32.0.
๐ The bug
I can't pass an object to the template after updating the version from 0.32.0 to 0.33.0.
๐ ๏ธ To reproduce
in
{root}/components/Header.vueI got this error:
Cannot read properties of undefined (reading 'pages')My project is public. The original repository here.
๐ Expected behaviour
I would expect it to work as it did in version 0.32.0.