0.0.5 • Published 2 months ago

nuxt-editable-alpha v0.0.5

Weekly downloads
-
License
MIT
Repository
github
Last release
2 months ago

Nuxt Editable

npm version npm downloads License Nuxt

Nuxt Editable is a free content editor UI to embed in your Nuxt site. It gives you a great editing experience by allowing you to click to edit content in-place.

Features

  • Live edit your Nuxt site
  • Works with any content by defining your own schemas
  • Bring your own database – works with any CMS or API.
  • Hig

Quick Setup

  1. Add nuxt-editable dependency to your project
# Using pnpm
pnpm add -D nuxt-editable

# Using yarn
yarn add --dev nuxt-editable

# Using npm
npm install --save-dev nuxt-editable
  1. Add nuxt-editable to the modules section of nuxt.config.ts
export default defineNuxtConfig({
  modules: ['nuxt-editable'],
});

That's it! You can now use Nuxt Editable in your Nuxt app ✨

Development

# Install dependencies
npm install

# Generate type stubs
npm run dev:prepare

# Develop with the playground
npm run dev

# Build the playground
npm run dev:build

# Run ESLint
npm run lint

# Run Vitest
npm run test
npm run test:watch

# Release new version
npm run release