Research
Security News
Kill Switch Hidden in npm Packages Typosquatting Chalk and Chokidar
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
vue-json-editor
Advanced tools
A jsoneditor of vue.js
vue.js
v-model:必须,[json对象]组件的json对象
:showBtns: boolean,是否显示保存按钮,默认为true
@json-change: json发生变化后的事件
npm install vue-json-editor --save
<template>
<div>
<p>vue-json-editor使用</p>
<!--在模板中使用vue-json-editor-->
<vue-json-editor v-model="json" :showBtns="true" @json-change="onJsonChange"></vue-json-editor>
<div>
</template>
<script>
// 引入vue-json-editor模块
import vueJsonEditor from 'vue-json-editor'
export default {
data () {
json: {
msg: 'demo of jsoneditor'
}
},
// 注入vueJsonEditor组件
components: {
vueJsonEditor
},
methods: {
onJsonChange (value) {
console.log('value:', value)
}
}
}
</script>
FAQs
A json editor of vue
The npm package vue-json-editor receives a total of 3,980 weekly downloads. As such, vue-json-editor popularity was classified as popular.
We found that vue-json-editor 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.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.