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. priya2995
    P
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 7
    • Best 1
    • Groups 0

    priya2995

    @priya2995

    1
    Reputation
    26
    Profile views
    7
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    priya2995 Follow

    Latest posts made by priya2995

    • RE: Click event on List and Icon

      Can you post your code to understand what did u do @digiproduct

      posted in Help
      P
      priya2995
    • RE: Hyperlink in Editor

      @digiproduct I just gave the example that already have on quasar-framework.org.

      posted in Help
      P
      priya2995
    • RE: Hyperlink in Editor

      follow this link.
      https://github.com/quasarframework/quasar-play/blob/master/src/pages/showcase/forms/editor.vue
      https://quasar-framework.org/quasar-play/android/index.html#/showcase/forms/editor
      in 2nd link make read only toggle enable.

      posted in Help
      P
      priya2995
    • RE: Hyperlink in Editor

      You need to import openUrl from quasar.
      <template>
      <q-btn @click.native=“openURL(‘https://twitter.com/quasarframework’)”>quasar</q-btn>
      </template>
      <script>
      import { openURL } from ‘quasar’

      export default {
      name: ‘MyLayout’,
      methods: {
      openURL
      }
      }
      </script>

      posted in Help
      P
      priya2995