Switch MIrage to its own folder

This commit is contained in:
Jeffrey Biles
2020-03-17 12:58:01 -07:00
parent 6965a8eb24
commit 062df37fea
2 changed files with 30 additions and 30 deletions

29
mirage/index.js Normal file
View File

@@ -0,0 +1,29 @@
import { Server } from "miragejs"
new Server({
routes() {
this.namespace = 'api';
this.get('/emails', async () => {
return [{
id: 1,
subject: 'First Steps',
body: 'Learning Vue with Vue 3, cool!',
read: false,
archived: false,
}, {
id: 2,
subject: 'Vue 3 - pretty cool',
body: 'Lots of really good features happening here',
read: false,
archived: false
}, {
id: 3,
subject: 'Do we have a released date?',
body: "I hear Q2 2020.",
read: true,
archived: false
}]
}, {timing: 2000})
}
})

View File

@@ -1,34 +1,5 @@
import { createApp } from 'vue';
import App from './App.vue';
import { Server } from "miragejs"
new Server({
routes() {
this.namespace = 'api';
this.get('/emails', async () => {
return [{
id: 1,
subject: 'First Steps',
body: 'Learning Vue with Vue 3, cool!',
read: false,
archived: false,
}, {
id: 2,
subject: 'Vue 3 - pretty cool',
body: 'Lots of really good features happening here',
read: false,
archived: false
}, {
id: 3,
subject: 'Do we have a released date?',
body: "I hear Q2 2020.",
read: true,
archived: false
}]
}, {timing: 2000})
}
})
import '../mirage/index';
createApp(App).mount('#app');