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

avs-editor

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

avs-editor

A lightweight WYSIWYG HTML editor component for Vue 3 with essential text formatting tools like bold, italic, lists, and image/link insertion.

latest
Source
npmnpm
Version
1.0.8
Version published
Maintainers
1
Created
Source

avs-editor

avs-editor is a simple WYSIWYG HTML editor component for Vue 3. It offers basic formatting tools like bold, italic, lists, headings, and image/link insertion — similar to TinyMCE or CKEditor, but lightweight and dependency-free.

avs-editor screenshot

🚀 Features

  • Bold, Italic, Underline
  • Ordered / Unordered Lists
  • Headings (H1, H2, P, Blockquote)
  • Insert Links and Images
  • Undo / Redo
  • Clear Formatting
  • Simple HTML output via v-model

📦 Installation

npm install avs-editor
app.js

import { createApp } from 'vue';
import App from './App.vue';
import AvsEditor from 'avs-editor';

const app = createApp(App);
app.use(AvsEditor);
app.mount('#app');

App.vue

<template>
  <AvsEditor v-model="htmlContent" :config="{ upload_url: '/api/uploads', height: 300 }" />
</template>

<script>
export default {
  data() {
    return {
      htmlContent: '<p>Edit me</p>'
    };
  };
</script>


Keywords

vue

FAQs

Package last updated on 01 May 2025

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