Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@vue-content/editor

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vue-content/editor

This is the live editor that makes content intractable. Logged in users can hover a block or field and click edit to make changes to the content.

  • 0.2.0
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

@vue-content/editor

This is the live editor that makes content intractable. Logged in users can hover a block or field and click edit to make changes to the content.

Getting started

Before installing the editor, please make sure that the content source you're using is supporting edit mode.

First you need to install the editor package in your project with the following command. Of cource yarn or any other package manager should work too.

npm i @vue-content/editor

Somewhere in your codebase, place the following snippet to lazy load the editor, meaning that nothing will be added to your bundle or imported on page load for the majority of users. In this simple example you only need to click a button to activate the editor but of course you can get creative here. Maybe the editor should be triggered by a keyboard shortcut instead? Or a query parameter? Or when entering a specific value in a certain field. You decide where to draw the line between "hidden for average users but easy to find for editors".

<script setup lang="ts">
import { defineAsyncComponent, ref } from 'vue'

const ContentEditor = defineAsyncComponent(async () => {
  await import('@vue-content/editor/style.css')
  const ContentEditor = await import('@vue-content/editor')
  return ContentEditor
})

const editMode = ref(false)
</script>

<template>
  <button @click="editMode = !editMode">Toggle edit mode</button>
  <ContentEditor v-if="editMode"></ContentEditor>
</template>

# Development

Run npm i && npm run dev to start the local development server. The code that is used for the sample site is located in src/sample.

FAQs

Package last updated on 19 Mar 2023

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc