testdrivenio / fastapi-vue

Single Page App with FastAPI and Vue.js
MIT License
265 stars 103 forks source link

cant see notes #9

Closed samuk10 closed 1 year ago

samuk10 commented 2 years ago

I followed the tutorial and reviewed it: https://testdriven.io/blog/developing-a-single-page-app-with-fastapi-and-vuejs/ found some typo in the router in index.js. its missing in the guide.

  {
    path: '/editnote/:id',
    name: 'EditNote',
    component: EditNote,
    meta: {requiresAuth: true},
    props: true,
  }

but it still doesnt fix for me, still cant see notes. but if I clone the repo and start it, I can see the notes.

one thing to make git clone work is editing the services/frontend/Dockerfile: FROM node:16-alpine maybe it help someone