Hi Folks,
I created a simple Risk Calculator App
https://jonafrank13.github.io/corona
Do let me know your feedback
Hi Folks,
I created a simple Risk Calculator App
https://jonafrank13.github.io/corona
Do let me know your feedback
Hi Guys, I made a HNPWA using quasar, hardly took half a day to complete it , thought of posting it on https://hnpwa.com/
Can anyone provide some feedback for it, things that can be improved and updated before i publish the app,
The link to the source : https://github.com/jonafrank13/hnpwa-quasar
The link to view the App : https://jonafrank13.github.io/hnpwa-quasar
Thought this amazing framework will get some much needed exposure/advertisement through this
What do you think ?
@rstoenescu any timeline for the integration ? A lot of us are waiting for this … Any idea on the timeline for this will be very useful and appreciated . Thanks in advance
Ah fixed it , @rstoenescu
-webkit-overflow-scrolling: touch;
This had to be given in order to fix the jitter… It flows like butter once this was given thanks … Should be useful for anyone who faces a similar issue
Oops @rstoenescu , Didnt check the changelogs, Yes it is resolved now, Thank you so much cheers!
Hi Folks,
I created a simple Risk Calculator App
https://jonafrank13.github.io/corona
Do let me know your feedback
@rstoenescu , @Max , thanks guys given a pr for the hn-pwa team, hopefully it should show up in their webpage
Hi Guys, I made a HNPWA using quasar, hardly took half a day to complete it , thought of posting it on https://hnpwa.com/
Can anyone provide some feedback for it, things that can be improved and updated before i publish the app,
The link to the source : https://github.com/jonafrank13/hnpwa-quasar
The link to view the App : https://jonafrank13.github.io/hnpwa-quasar
Thought this amazing framework will get some much needed exposure/advertisement through this
What do you think ?
Oops @rstoenescu , Didnt check the changelogs, Yes it is resolved now, Thank you so much cheers!
@afd Tried this too , Guess some problem with the component itself , Need to check … Thank you for taking time
<template>
<vue-instant v-model=“selectedContact” @input=“changed” :show-autocomplete=“true” :suggestions=“contactList” placeholder=“Select Contact” type=“custom”></vue-instant>
</template>
<script>
import VueInstant from ‘vue-instant/src/components/VueInstant’
export default {
data () {
return {
selectedContact: {},
contactList: []
}
},
methods: {
changed: function () {
this.contactList = []
HttpService.get(‘https://api.themoviedb.org/3/search/movie?api_key=342d3061b70d2747a1e159ae9a7e9a36&query=’ + this.selectedContact)
.then((response) => {
response.data.results.forEach(function (a) {
this.contactList.push(a)
})
})//Testing
}
},
components: {
VueInstant
}
}
</script>
This is how i tried wiring it up
https://github.com/santiblanko/vue-instant/blob/master/examples/webpack-example/src/App.vue
This is exactly how I am importing and using in my App, but seems like there is an error