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. Show & Tell
    Log in to post
    • Newest to Oldest
    • Oldest to Newest
    • Most Posts
    • Most Votes
    • E

      How to add phone mask in the input ?
      • Evandro P.

      9
      0
      Votes
      9
      Posts
      6325
      Views

      2bj

      import VMasker from 'vanilla-masker' export default { data () { return { form: { name: '', phone: '' } } }, watch: { 'form.phone' (newVal, oldVal) { this.form.phone = VMasker.toPattern(newVal, '+9 (999) 999-99-99') } } }
    • zuck

      Alighieri, a distraction-free writer tool
      alighieri editor electron novelist writer • • zuck

      6
      6
      Votes
      6
      Posts
      2043
      Views

      zuck

      Thank you all!

      Please, if you have any suggestion to improve the app, don’t hesitate to report it here (or on Github)!

    • S

      Fopra - Focused Practice
      • sonicviz

      1
      2
      Votes
      1
      Posts
      807
      Views

      No one has replied

    • T

      This topic is deleted!
      • tonton

      1
      0
      Votes
      1
      Posts
      2
      Views

      No one has replied

    • K

      Screen flash of left Sidebar in Showcase examples
      • keepsimpler

      5
      0
      Votes
      5
      Posts
      1672
      Views

      K

      I record the screen as a .mov file using Quicktime Player, I use Mac os.
      I cannot upload the mov file here, so I shared in my Google Driver as:
      https://drive.google.com/file/d/0B92GsmRDxD8EdUtZVTBGdDk4Rzg/view?usp=sharing
      please see that.

    • benoitranque

      [How to] load all files in a directory as views
      • benoitranque

      3
      4
      Votes
      3
      Posts
      1791
      Views

      rstoenescu

      @bruce Thought I should drop this note: @ is a custom webpack alias in the v0.14 template which points to ‘components’.

    • a47ae

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

      1
      2
      Votes
      1
      Posts
      1450
      Views

      No one has replied

    • V

      Quasar Mobile app for product scan in warehouse
      • vikram

      2
      2
      Votes
      2
      Posts
      993
      Views

      rstoenescu

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

    • S

      tachyons
      • smakinson

      10
      2
      Votes
      10
      Posts
      2971
      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
      8264
      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
      1425
      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
      1310
      Views

      rstoenescu

      Awesome. Thanks for posting this.

    • Z

      display funtion's result
      • zeineb

      2
      0
      Votes
      2
      Posts
      928
      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
      5546
      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
      1841
      Views

      rstoenescu

      Good job!

    • D

      q-tooltip delay
      • damosse31

      4
      0
      Votes
      4
      Posts
      1478
      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
      1276
      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
      5840
      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
      1637
      Views

      rstoenescu

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