I switched from Buffer to Pallyy as my social media management platform. It's built with Vue & Nuxt and Tim Bennetto gave me a discount for sharing his tool in this week's issue. Thanks Tim 💚.
👉🏻 In the first episode of the DejaVue podcast, Michael Thiessen and Alexander Lichter discuss Server-Side Rendering with Vue and Nuxt.
🔥 Nuxt Tip: Use Environment-Specific Configurations
It sometimes happens that you need to have different configurations for different environments in your Nuxt.js application. I'll show you how to use environment-specific Nuxt configurations.
Let's start with a simple nuxt.config.tsnuxt.config.ts file:
For demonstration purposes, let's assume that we want to have a different title in development and production. You might be tempted to use an environment variable like this:
This approach is not recommended by Nuxt, instead, you should use the fully typed, per-environment overrides like $production$production, $development$development or $test$test in your nuxt.confignuxt.config file. Here's how you can do it:
The $development$development key is a special key that allows you to define a Nuxt configuration for the development environment. This configuration is merged with the default configuration when running in development mode. This mechanism is powered by c12, a smart configuration loader available in the UnJS ecosystem.
If you're authoring layers, you can also use the $meta$meta key to provide metadata that you or the consumers of your layer might use.
Weekly Vue News #194 Reactive Time Ago View online Hi 👋 I'm on vacation this week, so no special news from my side — just some fresh Vue & Nuxt content for you! Enjoy this issue and have a lovely week ☀️ Vue 📕 Optimizing heavy operations in Vue with Web Worke...
Hey! In yesterday's email I shared what I think is the key feature to making Vue components highly reusable: Scoped slots. But scoped slots are hard to grasp, and even more difficult to master. So today, we're going to make sure we understand them on a deep, intuitive level. Then, I'm going to introduce you to the magic ✨ of scoped slots. The trick is to think of them as functions. Slots are just functions We're going to recreate the functionality of slots, but we'll use a regular Javascript function that only returns HTML. This is the code we'll replicate: <!-- Parent --> < template > < div class = "modal-container" > < div class = "modal" > Content in the Parent < Child class = "mb-4" v-slot = "{ text }" > ...
评论
发表评论