Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
@cerebral/vue
Advanced tools
Vue.js view for Cerebral.
npm install @cerebral/vue vue
import Vue from 'vue/dist/vue'
import App from 'cerebral'
import { Container, connect } from '@cerebral/vue'
import main from './main'
const app = App(main)
var vue = new Vue({
el: '#app',
components: {
container: Container(app)
}
})
Note! The HTML of the root element must use the container:
<div id="app">
<container>
<my-component></my-component>
</container>
</div>
MyComponent.js
import { connect } from '@cerebral/vue'
import { state, signal } from 'cerebral/proxy'
export default connect(
{
foo: state.foo,
click: signal.clicked
},
{
template: '<div v-on:click="click()">{{foo}}</div>'
}
)
main.js
import Vue from 'vue/dist/vue'
import App from 'cerebral'
import { Container, connect } from '@cerebral/vue'
import MyComponent from './MyComponent'
import main from './main'
const app = App(main)
var vue = new Vue({
el: '#app',
components: {
container: Container(app),
'my-component': MyComponent
}
})
You can also connect inside a .vue file. When using ParcelJS this requires additional packages.
npm install parcel-plugin-vue babel-preset-env --save-dev
Then add the preset to your .babelrc file:
{
"presets": ["env"],
"plugins": ["cerebral"]
}
Your component file can now be written as:
MyComponent.vue
<template>
<div v-on:click="click()">{{foo}}</div>
</template>
<script>
import { connect } from '@cerebral/vue'
import { state, signal } from 'cerebral/proxy'
export default connect(
{
foo: state.foo,
click: signal.clicked
}
)
</script>
FAQs
Vue.js view for Cerebral
We found that @cerebral/vue demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 open source maintainers 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
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.