Mirage JS with Vue

We take a look at using Mirage with Vue. Be sure to check out this video from Sam Selikoff, the creator of Mirage: Mirage is an API mocking library that lets you mock out a backend right within your front-end codebase. You can write your front-end code as if a real server exists and easily swap out Mirage with a real backend when it is available. We use a Vue Todo app as an example and write a mock server that persists todos using Mirage’s built-in database. Als
Back to Top