You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Error: "ERROR: PouchDB Find is a requirement for LiveFind and must be loaded first."
liveFind index.js:14
created index.js:1242
$watch VueJS
created index.js:1186
created index.js:1176
VueJS 28
main.js:18
js app.js:4554 webpack_require app.js:727
fn app.js:101
0 app.js:4664 webpack_require app.js:727
app.js:794
app.js:797
vue.runtime.esm.js:1888
I load it in Vue-Webpack stack like this:
import Vue from 'vue'
import App from './App.vue'
import router from './router'
import './registerServiceWorker'
import PouchVue from 'pouch-vue';
Vue.config.productionTip = false
import PouchDB from 'pouchdb-browser'
PouchDB.plugin(require('pouchdb-find'));
PouchDB.plugin(require('pouchdb-live-find'));
Vue.use(PouchVue, {
pouch: PouchDB,
defaultDB: 'pos'
});
new Vue({
router,
render: h => h(App)
}).$mount('#app')
I tried to reorder PouchDB.plugin lines but error is the same.
The text was updated successfully, but these errors were encountered:
Error: "ERROR: PouchDB Find is a requirement for LiveFind and must be loaded first."
liveFind index.js:14
created index.js:1242
$watch VueJS
created index.js:1186
created index.js:1176
VueJS 28
main.js:18
js app.js:4554
webpack_require app.js:727
fn app.js:101
0 app.js:4664
webpack_require app.js:727
app.js:794
app.js:797
vue.runtime.esm.js:1888
I load it in Vue-Webpack stack like this:
I tried to reorder PouchDB.plugin lines but error is the same.
The text was updated successfully, but these errors were encountered: