0.2.0 • Published 3 years ago

@grantjbutler/vuecg v0.2.0

Weekly downloads
3
License
MIT
Repository
github
Last release
3 years ago

VueCG

vuecg is an npm package that provides bindings in vue.js for nodecg's replicants.

It automatically listens to replicants you define in the replicants property on your component, and exposes the values to you as computed properties.

Example

<template>
  <div>Count: {{ count }}</div>
</template>

<script>
export default {
    replicants: [
        'count'
    ]
}