Is V1 Doc app written in Quasar?
-
Hello Team;
Is the doc app (https://v1.quasar-framework.org/introduction-to-quasar) written in Quasar V1? Does it make a good demo program for prospects to view it on desktop and mobile to see how a Quasar program runs? Until we get a nice sample demo from Quasar, can we suggest the Doc app for the time being?
Thanks!
-
yeah it is
-
@max said in Is V1 Doc app written in Quasar?:
yeah it is
So Max, is the content, for example when I look at a component info. and I see samples, API and etc, are these contents coming from DB and populating the forms dynamically or are they pre-rendered static data showing per page?
Secondly, is each option from menu, a page by itself using Vue’s lazy loading?Thanks!
-
@Ben-Hayat - The docs are now part of the core Quasar software package and is a Quasar built application. The pages (each menu item) are singular .md files, which can also be found under the /docs directory under /src/pages. The API data comes from the .json files in the /quasar/src directory next to each component. There is no database. The .json files are also where the info for the
describe
command comes from.Scott
-
Ah, very nice. Thanks for detailed answer.
-
@s-molinari Perhaps this could be made available at some stage so that we can create our own documentation sites for our own applications.
-
@digiproduct said in Is V1 Doc app written in Quasar?:
@s-molinari Perhaps this could be made available at some stage so that we can create our own documentation sites for our own applications.
you can clone the doc source, and see how they implemented it.
-
@metalsadman Do you have a link and instructions for that?
To help the more inexperienced of us …
-
@digiproduct haven’t really tried making my own website doing what they’ve done with their
docs
website, cloning their github https://github.com/quasarframework/quasar also include their docs page. I clone and update it regularly since my internet is crappy most of the times so i have a local dev server for the docs when i need some reference. when done cloningcd docs
and invoke ayarn
ornpm install
inside thenquasar dev
. you can drag/open the docs folder in your text editor to see the source. -
@metalsadman Thanks … appreciate the info.
I really must spend some time learning about Github … and how to get the best from it …