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. rvphilip
    R
    • Profile
    • Following 0
    • Followers 0
    • Topics 0
    • Posts 2
    • Best 0
    • Groups 0

    rvphilip

    @rvphilip

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

    rvphilip Follow

    Latest posts made by rvphilip

    • RE: Quasar ChatMessage - Add icon with action

      Hi, I think this is a normal issue across the development of bots.
      You will have to avoid creating new slots and integrate the code in the existing slots. But the code by default creates a new slot I guess. If that is the issue you could try out the code below:
      <!–
      Forked from:
      https://quasar.dev/vue-components/chat#Example--Default-slot
      –>
      <div id=“q-app”>
      <div class=“q-pa-md row justify-center”>
      <div style=“width: 100%; max-width: 400px”>
      <q-chat-message
      v-for="(msg,i) in messages"
      :name=“msg.name”
      :avatar=“msg.avatar”
      :stamp=“msg.stamp”
      :sent=“msg.status === ‘sent’”
      :bg-color=“msg.bgColor”
      :text-color=“msg.textColor”
      :key=“i”
      >
      <template v-for="(text, j) in msg.text" :key=“j”>
      {{text}} 
      <q-icon :name=“msg.action.icon” @click=“someAction(msg.action.name)” :color=“msg.action.color”></q-icon>
      <br v-if=“text.length > j”>
      <q-markdown>

      {{text}}

      This is a Blockquote
      with a token and a link

      Blockquotes can also be nested…

      …by using additional greater-than signs right next to each other…

      …or with spaces between arrows.
      </q-markdown>
      </template>
      </q-chat-message>
      </div>
      </div>
      </div>
      This is just for Quasar chatmessage option and not for other platforms. If you are interested in other platforms it would be better if you take help from any chatbot development services as they might provide you a quik and simple solution. Also this stage is quite simple and further integrating complex cognitive functionalities could be quite challenging.

      posted in Help
      R
      rvphilip
    • RE: Automate continuous deployment

      yes i think this is possible, do check out this link https://dev.to/codeguru_io/how-to-create-continuous-deployment-pipeline-for-quasar-app-in-under-5-minutes-using-aws-amplify-1ohi
      If this framework is not suitable for your deployment, try other frameworks like the Akka framework. just putting it out there. you can ignore it if you think otherwise

      posted in Framework
      R
      rvphilip