A tiny library to enable you work with PouchDB in a Vuejs app. It syncs with remote CouchDB too :-)
Installing Vuepouch is as easy as including it in your html script tag. Being that it is a vuejs plugin it has a dependancy on vuejs. So dont forget to include that.
<script src="vue.js"></script>
<script src="vuepouch.js"></script>
Vuepouch by default gets auto installed when you include it in your html. You dont
have to to Vue.use(vuepouch)
.
var app = new Vue({
el: "#app",
pouchdb: {
todos: {
localdb: "todos",
remoteURL: "http://127.0.0.1:5984/todos"
}
}
})
...
methods: {
addData: function(){
this.$pouchdbRefs.todos.push(/*your data*/)
}
}
this.$pouchdbRefs.todos.delete(/*your data*/)
this.$pouchdbRefs.todos.update(/*your data*/)
<div id="app">
<ul>
<li v-for="t in todos">{{t}}</li>
</ul>
</div>