Navigation

    Quasar Framework

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. Show & Tell
    Log in to post
    • Newest to Oldest
    • Oldest to Newest
    • Most Posts
    • Most Votes
    • a47ae

      [How To] Import Stylus variables depending on the current theme
      styling stylus webpack • • a47ae

      1
      2
      Votes
      1
      Posts
      1206
      Views

      No one has replied

    • V

      Quasar Mobile app for product scan in warehouse
      • vikram

      2
      2
      Votes
      2
      Posts
      911
      Views

      rstoenescu

      Thank you for sharing. It’s nice to see Quasar in action.

    • S

      tachyons
      • smakinson

      10
      2
      Votes
      10
      Posts
      2730
      Views

      rstoenescu

      Did you take into consideration point #2 in http://beta.quasar-framework.org/guide/quasar-theming.html#Build ?

    • S

      D3 integration
      • spectrolite

      1
      1
      Votes
      1
      Posts
      7698
      Views

      No one has replied

    • C

      This topic is deleted!
      • chelsea39

      1
      0
      Votes
      1
      Posts
      1
      Views

      No one has replied

    • R

      Spotify clone for NBC reality show
      • robmpreston

      2
      5
      Votes
      2
      Posts
      1328
      Views

      S

      Hi Rob,
      If you get a chance to clarify that possible NDA situation, I’d love it if you could post some info on my “Quasar live apps” thread.
      Thanks for sharing a cool Quasar story.

    • L

      Weacast
      • luc.claustres

      2
      0
      Votes
      2
      Posts
      1216
      Views

      rstoenescu

      Awesome. Thanks for posting this.

    • Z

      display funtion's result
      • zeineb

      2
      0
      Votes
      2
      Posts
      843
      Views

      J

      @zeineb If what you posted for your <script> tag is correct, then:

      Your curly braces are out of place In your call to total, you’re not supplying the parameters. Instead our total function won’t take any parameters and will instead use this.foo to get the value of foo. You can’t use -foo to get the negative value of foo <script> export default { data () { return { value1: 0, value2: 0, value3: 0, computed: { total: function(value1,value2,value3) { return (value2*(value3/1200))/(1-Math.pow((1+value3/1200),(-value1))) } } } } } </script>

      can be converted into

      <script> export default { data () { return { value1: 0, value2: 0, value3: 0, } }, computed: { total () { return (this.value2 * (this.value3 / 1200)) / (1 - Math.pow((1 + this.value3 / 1200), ( this.value1 * -1))) } } } </script>

      Also, you posted this in Show & Tell. I think a better category would have been Help. And please format the code you post here so it’s easier for people to help you.

      ```
      console.log(‘Hello World’)
      ```

      turns into

      console.log('Hello World')
    • E

      How to set dynamic function to tree component handler ?
      • Evandro P.

      13
      0
      Votes
      13
      Posts
      4990
      Views

      benoitranque

      @dg can you confirm you are getting data from your backend? It seems to me you return leaves before you get a response from your backend

    • S

      Quasar To Do Lists Manager
      • sergiuwd

      4
      2
      Votes
      4
      Posts
      1694
      Views

      rstoenescu

      Good job!

    • D

      q-tooltip delay
      • damosse31

      4
      0
      Votes
      4
      Posts
      1335
      Views

      rstoenescu

      Available in v0.13.8. Enjoy!

    • E

      How to hide a entire row in data-table component ?
      • Evandro P.

      2
      0
      Votes
      2
      Posts
      1144
      Views

      rstoenescu

      Just remove it from the data supplied to DataTable. Use computed properties and supply that to the DataTable component.

    • Martin

      Add animate.css
      • Martin

      6
      2
      Votes
      6
      Posts
      4687
      Views

      rstoenescu

      We’re a few weeks from releasing it. Currently working on documentation.

    • A

      How to test the upcoming v0.14 of quasar-framework
      • afd

      4
      0
      Votes
      4
      Posts
      1527
      Views

      rstoenescu

      Also mind that code is not yet ready for beta, but will be very soon. iOS theme for example is completely untested.

    • s.molinari

      Turn off the annoying Vue production tip
      • s.molinari

      7
      3
      Votes
      7
      Posts
      19512
      Views

      s.molinari

      Add the line

      Vue.config.productionTip = false

      in your main.js file before the line with new Vue.

      That should turn off the warning.

      Scott

    • Martin

      Quasar + Vuex
      • Martin

      14
      5
      Votes
      14
      Posts
      8354
      Views

      LaurentPayot

      @Martin no problem for me so far with vuefire but my app is far from complete. It’s true that, just like with any other nosql database, relations are painful.
      I really enjoy the Firebase authentication system, although it was bit tricky to implement a complete solution with usernames. Unfortunately they don’t care about i18n (english only password reset page etc.). The free hosting is something to mention too.
      Just like you I had a look at gun.js in 2016, and keeping an eye on it 😉

    • A

      Small plugin to throttle form submit handlers
      • afd

      2
      1
      Votes
      2
      Posts
      1211
      Views

      A

      On the other hande, I’ve initially tried to use Utils.debounce instead of Utils.throttle, but from my testing, the function would be called only after the initial configured timeout expired.

    • K

      This topic is deleted!
      • kayumanggi

      1
      0
      Votes
      1
      Posts
      2
      Views

      No one has replied

    • Martin

      Horizontal thumbnail slider with selected Image on Top
      • Martin

      2
      1
      Votes
      2
      Posts
      1517
      Views

      rstoenescu

      Quick tip. It’s best to move mounted() initialization code directly in data() to avoid rerender on startup.

    • Martin

      Add preload spinner
      • Martin

      2
      0
      Votes
      2
      Posts
      2509
      Views

      rstoenescu

      Will do. Thanks for posting this.