René Eschke

Results 35 issues of René Eschke

Hey, firstly: thanks for the talk! Cool idea to have a github repo for it :) My question: ![image](https://user-images.githubusercontent.com/1983382/55319561-6ee63c00-5475-11e9-966a-0888f21fdd1b.png) Why does this work? When I google on how to loop...

Vuex is a state manager tailored for Vue JS the structure is very similar to the main Vue docset. https://vuex.vuejs.org/guide/state.html So I guess you can implement this quickly :) Would...

request

`const now = dayjs(); // e.g. 'HH:mm' is 17:37` But what I want to modify the object to snap to `17:30` or `17:45`. Is there a way to do it?...

I don't know if this question even makes sense; I'm just getting started with vue-cli and the architecture it provides to code stuff. Vue-cli seems to do a lot of...

I'm using nuxt js and build a slim version of swiper using vue-awesome-swiper like this: ```js // /src/plugins/vue-awesome-swiper.js import Vue from 'vue'; import { Swiper as SwiperClass, Pagination, Navigation, Mousewheel...

`slidesPerView` is a setting the swiper docs claim to be changeable by using `breakpoints: {}` And manuall doing `mySwiper.params.slidesPerView = 3` followed by `mySwiper.update()` makes the slides widths recalculate. In...

`$cloudinary.image.url('example/myImage')` returns a single url, but how can I get the `srcset` string?

For a time input cleave cleverly adds a leading 0 and a colon when you just enter `9`, leaving you with `09:` – Now on blur it would be great...

I would love to do something like this: ``` this.$refs.myFormulateInput.focus() ``` :)

feature request

I'm building a little tool that receives midi notes and shows what chord is played. The results from `Chord.detect()` is not enough for me; I need more information. So I'm...