New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

dragon-editor

Package Overview
Dependencies
Maintainers
1
Versions
66
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dragon-editor

Javascript WYSIWYG editor in Nuxt!

latest
Source
npmnpm
Version
3.8.7
Version published
Weekly downloads
224
113.33%
Maintainers
1
Weekly downloads
 
Created
Source

stars-src forks-src language-src issues-src npm-version-src npm-downloads-src NPM sponsors-src Nuxt

DragonEditor

I just made the DragonEditor because I needed the WYSIWYG Editor to write on my blog.

This module support only Nuxt.

Font

If you use Codeblock. I recommented use Inconsolata font. (link)

Install

npm i dragon-editor
# or
yarn add dragon-editor
# or
bun add dragon-editor

Using

First. Set module

export default defineNuxtConfig({
    modules: ["dragon-editor"],
});

Second. Use Component

<template>
    <div class="editor-area">
        <DragonEditor v-model="contentData" />
    </div>
</template>

<script setup lang="ts">
    const contentData = ref<DEContentData>([]); // Do not modify the value after binding under any circumstances.
</script>

Done!

View Page

<template>
    <div class="view-area">
        <DragonEditorViewer :content="data" />
    </div>
</template>

<script setup lang="ts">
    const data = ref<DEContentData>([]);
</script>

More information in Document

Sponsors

Support this project by becoming a sponsor. GitHub Sponsors

Keywords

editor

FAQs

Package last updated on 14 Mar 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts