Marco Land

Results 10 comments of Marco Land

I have a similar issue with values from a multiselect fieldโ€ฆ ```javascript const query = { query: `site.children.filterBy('uid', 'projekte').first`, language: this.$i18n.locale, select: { title: true, uid: true, projects: { query:...

Hi pqml, thanks for checking up on this. Attached you can find the .zip of an example. It's not only fonts but all links would not work. I've switched to...

Having the same problem ๐Ÿ‘

I am experiencing the same issue and found a solution. in the original CSS they have this line: ``.shopify-buy__cart-item.is-hidden { -webkit-animation-name: flipOut; animation-name: flipOut; }`` it seems like the `.shopify-buy__cart-item.is-hidden`...

Here is a working [Codepen](https://codepen.io/img2001jpg/pen/oNbzqyv). Do not forget to change the `div` id in the HTML and JS on lines `22`, `24`, `29`, `31`.

I can confirm this issue. The presentation mode seems to break as soon as you add any, even just a single, `routeRule`, not only when it is set for all...

> @LKosters @marco-land I'm getting this error without any route rules, would you guys mind sharing how you set this up? My `preview` branch looks like this ```js export default...

The docs mention using a [key](https://nuxt.com/docs/guide/directory-structure/pages#child-route-keys), but this did not work for me either.

My current workaround is wrapping the child component in a div with `v-if`... e.g. ``` pages โ”œโ”€โ”€ index.vue [name: "index"] โ””โ”€โ”€ index โ””โ”€โ”€ [slug].vue [name: "index-slug"] ``` ``` ... const...