Loading Markdown Files in Nuxt 3
Overview
Integrating markdown files into a Nuxt 3 application for article rendering is a common requirement.
Understanding the Problem
Static assets are typically placed in the public directory. However, the official documentation clarifies an important limitation:
During SSR (Server-Side Rendering), Nuxt cannot use fetch to access files in the ...
Posted on Sun, 06 Sep 2026 16:37:33 +0000 by torleone
Vue 3 Core Concepts: Proxies, Reactivity Utilities, Composition API, and SSR Explained
const reactiveData = {
name: 'alice',
age: 30
};
const handler = {
get(target, key) {
console.log(`Accessing property: ${key}`);
return Reflect.get(target, key);
},
set(target, key, value) {
console.log(`Setting ${key} to ${value}`);
return Reflect.set(target, key, value);
},
deleteProperty(target, key) {
cons ...
Posted on Sun, 17 May 2026 10:14:17 +0000 by saad|_d3vil
Advanced React Development Techniques
Project Setup Standards
1. Development Standards and Code Style
// Folder and file naming conventions
- Use lowercase with hyphen-separated words (kebab-case)
- JavaScript variables: camelCase
- Constants: UPPER_CASE
- Components: PascalCase
// Code organization
- Use functional components with React Hooks exclusively
- Wrap components with R ...
Posted on Mon, 11 May 2026 03:34:07 +0000 by Sinikka