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. Credo
    C
    • Profile
    • Following 0
    • Followers 0
    • Topics 2
    • Posts 3
    • Best 0
    • Groups 0

    Credo

    @Credo

    0
    Reputation
    377
    Profile views
    3
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    Credo Follow

    Latest posts made by Credo

    • RE: Using hapi

      But if I use hapi on an already built project, it seems to me that I won’t be able to do much with hapi and still all the routing in the application is actually done with vue-router.

      posted in Framework
      C
      Credo
    • Using hapi

      hapi seems a really nice framework to me but I also need something to create components and build the view of my website, so I also need quasar. Is it possible to use hapi with quasar? How?
      Thanks

      posted in Framework
      C
      Credo
    • router-view and routing

      Hi
      I’m trying to build my first website and I have chosen quasar.
      But I don’t seem to understand how quasar’s(or maybe vue’s) routing system works. It seems that I should add my routes to the routing.js file like below:

      routes: [
      { path: ‘/’, component: load(‘Index’) }, // Default
      { path: ‘/main’, component: load(‘mainLayout’) },
      { path: ‘*’, component: load(‘Error404’) } // Not found
      ]

      But this doesn’t work. localhost:8080/main, redirects to http://localhost:8080/main#/ which renders the default view. Actually even the 404 page doesn’t appear if I go to an undefined route and it still gives the default view.
      What should I do?
      Also, is it correct to say that <router-view></router-view> renders whatever template the routing system tells it to? Does it mean I don’t need to add my components manually to App.vue?
      Thanks

      posted in Framework
      C
      Credo