
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
Vue Simple Text Editor - is a easy-setup WYSIWYG text editor for Vue.js 3 applications
WYSIWYG text editor for Vue 3

npm i vst-edit
Import VSTEdit component into your project
import {VSTEdit} from 'vst-edit'
Then register VSTEdit component and put it on the page. This text editor could be used in forms without any additional code. Inside the editor creates hidden input with name VSTEditor_input it can be specified by using input-name attribute.
Editor can be configured by using following properties:
theme : Editor has two color themes: dark and light. Dark theme is set by default. To specify color theme you could use this property. It may accept two values: dark-theme or light-themeinput-name : Using this attribute you can change name of the hidden input. It expects string value.display-group-name : Use it to specify if tools group name will be displayed. Expects boolean value. True by default.auto-save : Use it to enable automatic text saving into local storage. Expects boolean value. False by default.auto-save-time : Time interval for text saving. Expects number value in milliseconds If auto save is enabled, auto-save-time is 30000 ms by default.auto-save-identifier : Key name in local storage. Expects string value. If auto save is enabled, auto-save-identifier is __VSTEditor by default.content : You can use that property to push HTML content into the editor.For example:
<editor theme="dark-theme" input-name="content" :display-group-name="false" :auto-save="true" />
Editor supports image loading. To enable this feature you should configure link to image handler. For this type of configuration editor uses Provide / Inject. To specify link to the image handler you need to provide customSettings in one of the top-level components relatively to the editor For example in App.vue:
provide: {
customSettings: {
editorSettings: {
imageLoadHandler: 'http://your-backend.com/image-handler'
}
}
}
File input name is upload.
FAQs
Vue Simple Text Editor - is a easy-setup WYSIWYG text editor for Vue.js 3 applications
We found that vst-edit demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.