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

    side menu

    Help
    2
    2
    998
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • P
      PixelPaul last edited by

      just found this framework and downloaded it off git. is the side menu in the demo part of it? as i very much like it but i could not find sperate vue files for it in the downloaded src folder.

      1 Reply Last reply Reply Quote 0
      • benoitranque
        benoitranque last edited by

        Did you start a new project using the CLI? If so, the src folder does NOT contain quasar components, rather it is where your project files go. To access quasar components, import them as per the instructions here

        Example import:

        <template>
          <div>
            <q-btn @click="doSomething">Do something</q-btn>
            <q-icon name="alarm" />
          </div>
        </template>
        <script>
        import { QBtn, QIcon } from 'quasar'
        export default {
          components: {
            QBtn,
            QIcon
          },
          ...
        }
        </script>
        

        As for the menu you refer to: I suppose you mean the menu in the quasar demo. That menu is made of multiple quasar components, layout, list, item, sidelink.

        1 Reply Last reply Reply Quote 0
        • First post
          Last post