New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@cerebral/vue

Package Overview
Dependencies
Maintainers
3
Versions
270
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cerebral/vue - npm Package Compare versions

Comparing version 1.0.0-1504537127726 to 1.0.0-1504939819809

4

package.json
{
"name": "@cerebral/vue",
"version": "1.0.0-1504537127726",
"version": "1.0.0-1504939819809",
"description": "Vue.js view for Cerebral",

@@ -17,3 +17,3 @@ "main": "index.js",

"dependencies": {
"cerebral": "^2.1.0"
"cerebral": "^2.2.0-1504939819809"
},

@@ -20,0 +20,0 @@ "scripts": {

@@ -5,6 +5,6 @@ # @cerebral/vue

**NPM**
## Install
`npm install @cerebral/vue vue`
## Container
```js

@@ -40,2 +40,4 @@ import Vue from 'vue/dist/vue'

## connect
*MyComponent.js*
```js

@@ -52,1 +54,23 @@ import {connect} from '@cerebral/vue'

```
*main.js*
```js
import Vue from 'vue/dist/vue'
import {Controller} from 'cerebral'
import {Container, connect} from '@cerebral/vue'
import MyComponent from './MyComponent'
const controller = Controller({
state: {
foo: 'bar'
}
})
var app = new Vue({
el: '#app',
components: {
container: Container(controller),
'my-component': MyComponent
}
})
```
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