Questions tagged [feathers-vuex]

9 questions
3
votes
0 answers

Feathers-vuex how to send Op.like keyword in query to feathers-sequelize backend

I am using feathers-vuex and vue.js for the frontend and feathers.js with MySql db at the backend. I want to execute a search function on the front end which sends a query to the backend with the Op.like function. The backend however, does not…
ChelAdm
  • 41
  • 3
2
votes
1 answer

Feathers-vuex My auth state do not persist despite the install of persistState

I have a little problem. I'm making a project using feathers and vuex on Vue 2. In this project there is a dashboard where all my personnal projects / experiences / and messages in. when i login and redirect to the dashboard, all the data is…
p2sias
  • 21
  • 2
2
votes
2 answers

Quasar + Feathers-Vuex: how to integrate?

I want to integrate Quasar with FeathersJS using Feathers-Vuex Feathers-Vuex uses a pattern to: promise to authenticate from localStorage/cookies .then( /*start the new Vue() app */ ) I created my app with Quasar CLI 1.0.beta16-ish and looked…
Michael Cole
  • 15,473
  • 7
  • 79
  • 96
1
vote
0 answers

Using VueJS + FeathersJS + Feathers-Vuex, getting this error: Uncaught TypeError: vue__WEBPACK_IMPORTED_MODULE_0__.default is undefined

Here is the error: Uncaught TypeError: vue__WEBPACK_IMPORTED_MODULE_0__.default is undefined index.js:7 js app.js:96 __webpack_require__ app.js:397 fn app.js:643 main.js:6 js app.js:74 …
1
vote
1 answer

Unhandled rejection at promise with feathersjs oauth call

I'm trying to create a frontend Vue(x) app with feathers-vuex and a backend feathers API using only oauth for authentication. If I hit the backend directly on localhost:3030/oauth/google then the right flow and re-directs occur with google and I…
1
vote
0 answers

Feathersjs, feathersjs-vuex clean npm install giving issue

I am setting up a new web app with feathersjs as the back end and Vue + feathers client (feathers-vuex) as my front end. However, after installing the packages using npm, I am getting multiple import errors as follows - Could not find a declaration…
ChelAdm
  • 41
  • 3
0
votes
0 answers

How can I authenticate users with Feathers.js

I'm trying to log in a user using the vuex store. onSubmit() { this.$store .dispatch("auth/authenticate", { username: "Sibi", password: "123", strategy: "local" }) .then(function(result) { …
vojislav
  • 105
  • 1
  • 8
0
votes
1 answer

Async mounted hook is not awaiting Feathers-Vuex useFind

I'm having some trouble getting the array in books.value to log to the console. It continues to return no results even after awaiting the useFind function. I have confirmed results exist for the value I pass into the query. If I make a change to the…
Matthew Snell
  • 917
  • 3
  • 12
  • 26
0
votes
1 answer

Feathers vuex : user is no longer logged in after refresh

I am new to feathers and vue js I don't understand this, when i log in a user the v-if directives works on the navbar, but when i refresh the page i notice that the user is no longer logged in still the JWT is stored in the…
seddka
  • 105
  • 12