👉🏻 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.
How's it going? I was planning to release the update for Reusable Components yesterday, but things haven't gone as planned. Instead, I will be launching it next week. I need a just a bit more time to make sure that the quality is up to my standards. As I've been updating the course and re-writing all the content and step-by-step refactorings, I've also been able to simplify a few things. It's just like refactoring a piece of code, and it's one of the greatest feelings. I also looked at how much content is in there, and it looks like it will be similar to the Clean Components Toolkit. Lots of great content on how to write highly reusable components, simplified and updated — I can't wait to release the update next week! Oh, and one more thing: I'm doing a podcast with Alex Lichter ! It's called Deja Vue and we'll be releasing the first ...
Monday, November 20, 2023 I'd pay $10K up front # Matt Mullenweg : "Sales of the 100-year plan so far: 0. Hundreds of people filled out the form, though. I think we really messed something up in the follow-up, including not making it self-serve to start. Will review and try again. It's an important promise to us." # I'm very much a customer for this service. It would be worth $10K for to buy 100 years of persistence for my web writing. A simple easy to understand service that helps get the process started. # I transfer scripting.com to Automattic as registrar. # I upload the contents from S3 to Automattic server. Static files, HTML, feeds, images, code. # Automattic provides an API to keep the files updated and so I can add to them as long as I'm still writing. # The files are publicly accessible over HTTP. # Automattic agrees to renew the domain for 100 years, and manage access to the files, with reasona...
评论
发表评论