Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
vue2-ace-editor
Advanced tools
A packaging of ace
Demo here: https://github.com/chairuosen/vue-ace-editor-demo/tree/vue2
emmet support for html is removed after 0.0.6. because its code cannot works with strict mode.
if you want to use it. require emmet by your own.
npm install emmet@git+https://github.com/cloud9ide/emmet-core.git#41973fcc70392864c7a469cf5dcd875b88b93d4a
require(['emmet/emmet'],function (data) { // this is huge. so require it async is better
window.emmet = data.emmet;
});
Install
npm install --save-dev vue2-ace-editor
Require it in components
of Vue options
{
data,
methods,
...
components: {
editor: require('vue2-ace-editor'),
},
}
Require the editor's mode/theme module in custom methods
{
data,
methods: {
editorInit: function () {
require('vue-ace-editor/node_modules/brace/mode/html')
require('vue-ace-editor/node_modules/brace/mode/javascript')
require('vue-ace-editor/node_modules/brace/mode/less')
require('vue-ace-editor/node_modules/brace/theme/chrome')
}
},
}
Use the component in template
<editor v-model="content" @init="editorInit" lang="html" theme="chrome" width="500" height="100"></editor>
prop v-model
is required
prop lang
and theme
is same as ace-editor's doc
prop height
and width
could be one of these: 200
, 200px
, 50%
FAQs
A Vue2.0's component based on ace/brace
The npm package vue2-ace-editor receives a total of 0 weekly downloads. As such, vue2-ace-editor popularity was classified as not popular.
We found that vue2-ace-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.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.