vue-feathers icon indicating copy to clipboard operation
vue-feathers copied to clipboard

ported to modern feathers scaffold and Feathers 3

Open httpete opened this issue 6 years ago • 3 comments

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.

httpete avatar Feb 28 '18 03:02 httpete

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?

L-K-Mist avatar Mar 04 '18 04:03 L-K-Mist

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 <[email protected]> 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 avatar Mar 04 '18 13:03 httpete

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.

httpete avatar Mar 11 '18 02:03 httpete