Jelle

Results 15 comments of Jelle

@georgealways Yes you are right. ( it also works for other input fields, as it will put focus on the element when clicking on the label. ) A possible "threat"...

Created this PR as a working example https://github.com/georgealways/lil-gui/pull/50

seems that https://troisjs.github.io/guide/materials/lambert-material.html is out of sync with the source https://github.com/troisjs/troisjs.github.io/edit/master/src/guide/materials/lambert-material.md. The documentation points to https://github.com/troisjs/trois/blob/master/src/materials/LambertMaterial.ts. And source of the documentation points to https://github.com/troisjs/trois/blob/master/src/materials/Material.ts

yes that's true that json-server holds express but when installing `npm i -g json-server-auth`. `json-server-auth` can't find the `express` that was installed with `json-server`. Fix I used is to also...

Yes I have `json-server` installed globally. Problem is that nodejs doesn't resolve sibling packages from other global packages with obvious reasons. Possible solution would be to - add express as...

@ericnewton76 sad to hear a thumbs down. The idea is to have a better mock that comes closer to what an actual response on a production server would look like...

https://github.com/jeremyben/json-server-auth offers something like that

Thanks for the quick feedback. @Timu57 @rakibtg. 1. Current state of the pull request should not be merged indeed. 2. Good point. I just added uniqid as quick starting point...

I still have this issue. Where I would expect `myData` to be defined. ```js @Component({}) class MyComponent extends Vue { @Prop({default: 'nice'}) aProp; myData = this.aProp created() { console.log(this.myData) //...