Jose Antonio Reyna Fuentes

Results 23 comments of Jose Antonio Reyna Fuentes

how can i sent the current status and also an identifier? `@input="setStatus(id, isOn)"` for example?

@dkrasov yes! now i get my id and the value, but then the switch does not animate to the true or false value it keeps on OFF

this is my switch code: ``` switches(color="green", :value="servicio.realizado", :emit-on-mount="false", :type-bold="true", @input="setRealizado(servicio.id, $event)") ``` then on my method just: ``` setRealizado: function(id, event) { console.log('id', id); console.log('val', event); } ```

the thing is that my v-model in this case is a list of dates so if the date is null then the switch is off and if it is a...

got it! i had to create a new array for my switches v-model but now its working thank you so much!

I would like to add it to watch too.

i send a rendered png of the QR from my iphone app to the watch in a current project.

i send the QR like this: ``` func createImageForWatch(_ qr_string: String) { if WCSession.isSupported() { WCSession.default().delegate = self WCSession.default().activate() } else { return } if var qrCodeObject = QRCode(qr_string) {...

@diolce i think the problem could be that, now you need to have all the delegate methods in the session delegate. in my case in the viewController that creates the...