Added MirageJS example configuration
This commit is contained in:
parent
e57909b318
commit
93a8313efd
6 changed files with 321 additions and 0 deletions
|
|
@ -4,6 +4,8 @@ import { ref } from 'vue'
|
|||
defineProps<{ msg: string }>()
|
||||
|
||||
const count = ref(0)
|
||||
|
||||
fetch("/api/users").then(res => res.json()).then(res => console.log(res))
|
||||
</script>
|
||||
|
||||
<template>
|
||||
|
|
|
|||
Reference in a new issue