sunabozu / vue-feathers

Integration with the Feathers framework for Vue.js
MIT License
78 stars 9 forks source link

ported to modern feathers scaffold and Feathers 3 #8

Open httpete opened 6 years ago

httpete commented 6 years ago

Hi,

I have spent the last two days learning from your example which has a good starting point but is outdated. I think I have it working on the latest feathersjs. Can we collaborate on this somehow so others don't have to do this? A Vue/Vuex/Feathersjs is a killer combo.

L-K-Mist commented 6 years ago

I'm in the same place you were httpete, still working through it myself. Besides updating the imports to '@feathersjs' format, what other gotcha's did you encounter?

httpete commented 6 years ago

Vue Routes had to be imported es style not required() - It was so many little things very hard to debug

import HomeComponent from '../views/not-found.vue'; export default [ { path: '/', name: 'home', component: HomeComponent }

:

On Saturday, March 3, 2018, 11:06:37 PM EST, L-K-Mist <notifications@github.com> wrote:  

I'm in the same place you were httpete, still working through it myself. Besides updating the imports to '@feathersjs' format, what other gotcha's did you encounter?

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub, or mute the thread.

httpete commented 6 years ago

I am struggling with babel and all with vue, getting confusing results in the chrome debugger. I think we should abandon the babel pipeline, and use TypeScript, class based vue components. There must be a good boilerplate TypeScript Vue project we can just pop on top of the fine featherjs integration you have.