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. ran-j
    R
    • Profile
    • Following 0
    • Followers 0
    • Topics 3
    • Posts 7
    • Best 0
    • Groups 0

    ran-j

    @ran-j

    0
    Reputation
    12
    Profile views
    7
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    ran-j Follow

    Latest posts made by ran-j

    • q-chat

      Why can I usa a html5 audio in a q-chat ?

      9e14dfd2-3e64-4e7b-af0c-2656e96c86e1-image.png

      I can hear but the audio is not rended

      posted in Help
      R
      ran-j
    • Using BabylonJS

      Hello, I trying to import meshs with babylon JS and quasar v17, but the code is not resolving the model path

      Screen Shot 04-11-19 at 12.55 PM.PNG Screen Shot 04-11-19 at 12.48 PM.PNG Screen Shot 04-11-19 at 12.48 PM 001.PNG

      But in the broswer the url does resolve the file.

      I put the files on “/src/assets” and “/src/statics” and nothing.

      posted in Help
      R
      ran-j
    • RE: floating website chat button

      but when I run the card is like this https://imgur.com/a/s7YHtnW

      posted in Help
      R
      ran-j
    • RE: floating website chat button

      I fixed.

      with and </q-layout>

      components: [
      ‘QLayoutFooter’,
      ‘QPageSticky’,
      ‘QLayout’,
      ‘QLayoutHeader’,
      ‘QLayoutDrawer’,
      ‘QPageContainer’,
      ‘QPage’,
      ‘QToolbar’,
      ‘QToolbarTitle’,
      ‘QBtn’,
      ‘QIcon’,
      ‘QList’,
      ‘QListHeader’,
      ‘QItem’,
      ‘QItemMain’,
      ‘QItemSide’,
      ‘QFab’,
      ‘QFabAction’,
      ‘QCard’,
      ‘QCardTitle’,
      ‘QCardMain’,
      ‘QCardMedia’,
      ‘QCardSeparator’,
      ‘QCardActions’,
      ‘QDialog’
      ],

      posted in Help
      R
      ran-j
    • RE: floating website chat button

      Its giving me error on webpack :

      client?f1f8:168 ./src/pages/Index.vue?vue&type=template&id=4bc9d7de& (./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./src/pages/Index.vue?vue&type=template&id=4bc9d7de&)
      Module Error (from ./node_modules/vue-loader/lib/loaders/templateLoader.js):
      (Emitted value instead of an instance of Error)
      Error compiling template:

      <q-layout>
      <q-dialog v-model="showChatDialog" position="right">
        <q-card>
          <q-card-section>
            <div class="text-h6">This is your Chat</div>
          </q-card-section>
      
          <q-separator></q-separator>
      
          <q-card-section style="max-height: 50vh" class="scroll">
            <p v-for="n in 15" :key="n">Put Chat in here!!! Put Chat in here!!!</p>
          </q-card-section>
      
          <q-separator></q-separator>
        </q-card>
      </q-dialog>
      <q-page-container>
        <q-page padding>
          <q-page-sticky position="bottom-right" :offset="[18, 18]">
            <q-btn 
              fab
              round
              size="lg"
              color="purple"
              icon="chat"
              @click="showChatDialog = true"
            >
            </q-btn>
          </q-page-sticky>
        </q-page>
      </q-page-container>
      

      <q-layout>

      • tag <q-layout> has no matching end tag.
      • tag <q-layout> has no matching end tag.
      posted in Help
      R
      ran-j
    • RE: floating website chat button

      @s-molinari thank you.

      posted in Help
      R
      ran-j
    • floating website chat button

      How can I do a chat like this https://codepen.io/neilkalman/pen/VPJpaW with qusar ?

      what I have :

      <template>
        <q-page class="flex flex-center">
          <img alt="Quasar logo" src="~assets/quasar-logo-full.svg">
       
          <q-fab
            color="blue"
            class="fixed"
            icon="keyboard_arrow_up"
            direction="up"
            style="right: 18px; bottom: 18px"
          >
            <q-fab-action
              class="white"
              @click="someMethod()"
              icon="mail"
            />
      
            <q-fab-action
              class="white"
              @click="someMethod()"
              icon="alarm"
            />
          </q-fab>
      
          
       
        </q-page>
      </template>
      
      posted in Help
      R
      ran-j