👉🏻 Shadcn Vue is a powerful and highly customizable UI component library built specifically for Vue.
👉🏻 In this article, we'll explore what Shadcn Vue is, its origins, how to integrate it into Vue apps, and most importantly, why it might be the perfect fit for your next project.
👉🏻 Daniel Roe explains the differences between server and route middleware in a Nuxt project.
💡 Nuxt Tip: Rendering Dynamic Markdown
In my current freelance project, I had to render dynamic Markdown content in a Nuxt 3+ application. The Markdown content was written by redactors in a CMS, provided via an API, and needed to be rendered on the client-side.
Luckily, Nuxt 3+ provides a solution for rendering Markdown content using the @nuxtjs/mdc@nuxtjs/mdc module. This module allows you to render Markdown content as HTML in your Nuxt 3+ application.
You can add it to your project using the following command:
1npx nuxi@latest module add mdc
This command will install the @nuxtjs/mdc@nuxtjs/mdc module and add it to the modules section of your nuxt.config.tsnuxt.config.ts file.
Now you can use the MDCMDC component to render Markdown content in your Vue components. Here's an example of how you can use it:
1<script setup lang="ts">2const md = `# h134## h256This is a paragraph78This is a [link](https://mokkapps.de)910::my-button11Click me12::`13</script>1415<template>16 <MDC :value="md" tag="article" />17</template>
👉🏻 The @scope rule in CSS allows developers to directly attach styles to HTML elements, limiting the scope of the CSS to the children of the targeted DOM node.
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 }" > ...
评论
发表评论