Timkor
Timkor
Any ETA?
@dennisreimann Seems like a good use case for this feature. Also I had something related in mind: I want to render [mjml](https://mjml.io/try-it-live) templates in Vue using Nuxt.js. This way I...
Yes indeed, I agree. However, `template` is already a component property (specifying the template literal). Maybe also a bit ambigious. What would be nice is also to be able to...
Currently it fails in Nuxt dev mode. ```javascript import LazyHydrate from 'lazy-hydration'; const Hydrate = process.env.NODE_ENV === 'production' ? LazyHydrate : { functional: true, render(c, {slots}) { return slots().default; }...
> Seems like "preconnect" works that way: > > nuxt.config.js: > > ``` > link: [ > { > rel: "preconnect", > href: "https://cdn.domain.com/", > crossorigin: true > } >...
`cart/setProducts` is a Vuex Store Action. Which simply sets the cart items upon the initial request. `/server/api/cart/add.js` is a `nuxt-api` action. Which is not officially released yet. But I will...
Hi dextherry, Yes you could use the session data everywhere you would like. In order to do this, you could best make a Vuex store for the session data: `store/index.js`...
@dextherry You do not have access to the store in server middleware. But you can access the session object though. I would make an API call using server middleware if...
@eiski You could fetch the data in mounted: ```javascript mounted() { fetch('...').then((data) => { Object.assign(this, data); }) } ```