Jegor Uglov

Results 4 issues of Jegor Uglov

Throws following error: `Module build failed: TypeError: Cannot read property 'vue' of undefined` Probably is related to this vue-loader issue https://github.com/vuejs/vue-loader/issues/1177

In the case of a multi-app repository, it is useful to degit only a certain subdirectory from that repository. Is there current/planned feature to do so?

Sample showing the problem: https://ellie-app.com/8Hwz7S56mQWa1 Workaround with custom CSS: https://ellie-app.com/8HJZYzfLJdca1 Like in most text editors, the textarea field is the main element on the page. Whether it's empty or overflown,...

Given schema ``` type Query { books: [Book] } type Book { title: String author: String } ``` query ``` query { books { ...foo ...bar } } fragment foo...