Benjamin Franz
Benjamin Franz
@seanpr96 I wonder this too. I know where to copy the files from the API, but what do I do with the source of this repo? How can I open...
@muratcorlu didnt saw it. But it only logs if a mock file was found, for forwarded requests it would be also nice to see an information :)
@muratcorlu yes, display` Couldn't find a mock for this url.` and `Request passing to next middleware.` if also `nextOnNotFound `is set to true. Thanks.
the correct path would be `mocks/api/users/__user_id__/*/ANY.js` so the * indicated to use all nested paths, but a user id is still required. `mocks/api/users/*/ANY.js` would match all even without user id
json needs for all keys/values strings, so maybe `__id__` without quotes is enough
you are already introduced a wildcard notation with double underscore, so you probably fine using it again
yeah you are right. Another cool thing would be usage of simple expressions `{ 'doubleID': 'mockExpresion(__uuid__ * 2)' }` where 'mockExpresion' indicates the value is an expression
But ```{"id": "__id__"} ``` would be already nice and I think its okay to turn it on by default, but maybe the user can disable it with an option passed...
@phiwut but you also have to use different components. You have to impement the elements on vuegg both with vuetify and MDC
Yes, vuetify requires that you have a v-app at top of all other vuetify components, mainly for placing the navbar and dialogs in the correct position. But you are also...