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

    XopoIII

    @XopoIII

    2
    Reputation
    48
    Profile views
    5
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    XopoIII Follow

    Best posts made by XopoIII

    • RE: Dynamic image error (v-for list)

      found a solution

      required('src/statics/images/aimg.svg')
      
      posted in Help
      X
      XopoIII

    Latest posts made by XopoIII

    • RE: create an empty theme

      thank, just a lot of extra css

      posted in Help
      X
      XopoIII
    • create an empty theme

      hi, I can not find information, how to create an empty theme for the default mat
      i add in src/css/themes aff.demo.styl and quasar dev -t demo error: app:ensure-argv ⚠️ Unknown theme “demo”

      posted in Help
      X
      XopoIII
    • RE: Dynamic image error (v-for list)

      found a solution

      required('src/statics/images/aimg.svg')
      
      posted in Help
      X
      XopoIII
    • RE: Dynamic image error (v-for list)

      tried to change path, do not help any: assets whith ~,@,/,./ or statics with ~,@,/,./ or required(path)

      😞

      posted in Help
      X
      XopoIII
    • Dynamic image error (v-for list)

      hi, i have problem.

      working:

      data () {
        return {
          aImg: 'statics/images/aimg.svg'
        }
      }
      <div>
            <img :src="aImg" />
      </div>
      

      does not work:

      data () {
        return {
          aImg: 'statics/images/aimg.svg'
        }
      }
      <div>
          <div
            v-for="aa in aas"
            :key="aa.id"
          >
            <img :src="aa.image" /> // Not this
            <img :src="aImg" /> // Not this
            <span>{{ aa.name }}</span>
          </div>
      </div>
      

      everything works on dev, but on build no
      what am I doing wrong?

      Build mode… cordova
      Quasar theme… mat
      Quasar CLI… v0.17.13
      Quasar Framework… v0.17.10

      posted in Help
      X
      XopoIII