No More Posting New Topics!

If you have a question or an issue, please start a thread in our Github Discussions Forum.
This forum is closed for new threads/ topics.

Navigation

    Quasar Framework

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. jonafrank
    J
    • Profile
    • Following 0
    • Followers 0
    • Topics 6
    • Posts 21
    • Best 5
    • Groups 0

    jonafrank

    @jonafrank

    8
    Reputation
    650
    Profile views
    21
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    jonafrank Follow

    Best posts made by jonafrank

    • Corona Risk Calculator

      Hi Folks,

      I created a simple Risk Calculator App

      https://jonafrank13.github.io/corona

      Do let me know your feedback 🙂

      posted in Show & Tell
      J
      jonafrank
    • HN-PWA (HackerNews Progressive Web App) using Quasar, feedback required

      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

      @rstoenescu

      What do you think ?

      posted in Show & Tell
      J
      jonafrank
    • RE: testing in version 0.9.1

      @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 🙂

      posted in Framework
      J
      jonafrank
    • RE: Smoother scrolling

      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

      posted in Help
      J
      jonafrank
    • RE: Bug in Models ?

      Oops @rstoenescu , Didnt check the changelogs, Yes it is resolved now, Thank you so much 🙂 cheers!

      posted in Help
      J
      jonafrank

    Latest posts made by jonafrank

    • Corona Risk Calculator

      Hi Folks,

      I created a simple Risk Calculator App

      https://jonafrank13.github.io/corona

      Do let me know your feedback 🙂

      posted in Show & Tell
      J
      jonafrank
    • RE: HN-PWA (HackerNews Progressive Web App) using Quasar, feedback required

      @rstoenescu , @Max , thanks guys 🙂 given a pr for the hn-pwa team, hopefully it should show up in their webpage 👍🏻

      posted in Show & Tell
      J
      jonafrank
    • RE: HN-PWA (HackerNews Progressive Web App) using Quasar, feedback required

      @sonicviz thank you 🙂

      posted in Show & Tell
      J
      jonafrank
    • RE: Alighieri, a distraction-free writer tool

      Awesome 🙂

      posted in Show & Tell
      J
      jonafrank
    • HN-PWA (HackerNews Progressive Web App) using Quasar, feedback required

      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

      @rstoenescu

      What do you think ?

      posted in Show & Tell
      J
      jonafrank
    • RE: Bug in Models ?

      Oops @rstoenescu , Didnt check the changelogs, Yes it is resolved now, Thank you so much 🙂 cheers!

      posted in Help
      J
      jonafrank
    • Bug in Models ?

      0_1491896067736_a89d75ac-1c83-11e7-8439-511c8949c419.PNG

      The model does not open up to the full screen only on ios devices

      posted in Help
      J
      jonafrank
    • RE: Help required to Integrate Vue Instant

      @afd Tried this too , Guess some problem with the component itself , Need to check … Thank you for taking time 🙂

      posted in Help
      J
      jonafrank
    • RE: Help required to Integrate Vue Instant

      <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

      posted in Help
      J
      jonafrank
    • RE: Help required to Integrate Vue Instant

      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

      posted in Help
      J
      jonafrank