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

    How to integrate Quasar framework into my vue 2 project

    Framework
    2
    3
    2676
    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.
    • Mayank
      Mayank last edited by Mayank

      Hi, I am new to vue and want to use Quasar components like Autocomplete textbox. But I am not getting any proper tutorial or documentation to use components from it. Please help me to find some proper video tutorial or samples for the same.
      It will be great gesture.
      Thanks in Advance.

      L 1 Reply Last reply Reply Quote 0
      • L
        leon @Mayank last edited by

        Hi @Mayank , hope i can help you

        • Install quasar-framework ----> npm i --save quasar-framework
        • Install quasar-extras ----> npm i --save quasar-extras

        Where you start your vue ( main.js normaly) add :

        • import Quasar from ‘quasar-framework’
        • import ‘quasar-extras/roboto-font’
        • require(quasar/dist/quasar.mat.css) or require(quasar/dist/quasar.ios.css)

        Now start you Vue whit :

        Quasar.start(() => {
        /* eslint-disable no-new */
          new Vue({
            el: '#q-app', // this ID must exist in your index.html
            router,
            render: h => h(App),
          })
        })
        1 Reply Last reply Reply Quote 1
        • Mayank
          Mayank last edited by

          Hi @leon , Yes your comments are helpful. I am able to deploy the Quasar and use it for my development.
          But when I build this framework for production, Its not having any index file in Dist folder.

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