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. aeiosapp
    A
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 5
    • Best 0
    • Groups 0

    aeiosapp

    @aeiosapp

    0
    Reputation
    1
    Profile views
    5
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    aeiosapp Follow

    Latest posts made by aeiosapp

    • RE: icongenie 2.0 - android icons are solid white

      Had the same problem, was able to fix it manually:

      • go to src-capacitor/android/app/src/main/res/values/ic_launcher_background.xml
      • ic_launcher_background.xml content should look like:

      <?xml version=“1.0” encoding=“utf-8”?>
      <resources>
      <color name=“ic_launcher_background”>#0062A0</color>
      </resources>

      • just change color code in the <color>!
      posted in Help
      A
      aeiosapp
    • RE: [Solved] Quasar V1 "Failed to compile with X errors" but no error shown

      Had similar issue:
      After quasar dev I’ve got a message without any additional comments:
      ERROR Failed to compile with 2 errors

      So I did quasar build and during the build, I’ve got all the details about errors.

      Once I’ve fixed my errors, quasar dev launched my app!

      posted in CLI
      A
      aeiosapp
    • Horizontal virtual scroll inside virtual scroll doesn't works fine

      Describe the bug
      I’m trying to make a vertical list of rows, where each row is horizontal list.
      So I configured a vertical virtual scroll with :key=“idx” and put inside a horizontal virtual scroll with :key=“idy”.

      I have a double array of items heavySubCats[a][b].
      When I try to set items for horizontal list :items=“heavySubCats[idx]” (where idx is a key of a vertical list) - it doesn’t work, but if I’ll set a constant instead of the index :items=“heavySubCats[2]” - it works.

      Codepen/jsFiddle/Codesandbox (required)
      https://jsfiddle.net/antonsvens/sfvkmbc5/9/

      To Reproduce
      Steps to reproduce the behavior:

      Go to the jsfiddle link above, run - you will only see vertcal list titles
      In the HTML tab, line #28 replace
      :items=“heavyItems[idx]”
      with
      :items=“heavyItems[3]”
      or any other number instead of idx, run - you will see horizontal scroll list in each row

      Expected behavior
      I need to pass index of the row of vertical list to the horizontal list

      Guys, any ideas?

      posted in Help
      A
      aeiosapp
    • RE: [V1] A guide for @quasar/dotenv

      @aeiosapp said in [V1] A guide for @quasar/dotenv:

      Nice solution, by the way it works fine when I call process.env.MYVAR jn the <script> section of my *.vue file, but it doesn’t work when I call it in my src/app/local.js file where I’d like to put some functions that I’ll call in a <script> of *.vue file. Any ideas how to handle it??

      Found solution for my question. Just had to add this code in my src/app/local.js file:

      const DotEnv = require('dotenv')
      
      if(parsedEnv = DotEnv.config().parsed) {
        for (let key in parsedEnv) {
          process.env[key] = parsedEnv[key]
        }
      }
      
      
      posted in Useful Tips (NEW)
      A
      aeiosapp
    • RE: [V1] A guide for @quasar/dotenv

      Nice solution, by the way it works fine when I call process.env.MYVAR jn the <script> section of my *.vue file, but it doesn’t work when I call it in my src/app/local.js file where I’d like to put some functions that I’ll call in a <script> of *.vue file. Any ideas how to handle it??

      posted in Useful Tips (NEW)
      A
      aeiosapp