Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Vuetify Offline Docs

I have started using Vuetify to add ui-components and use pre-defined layouts. The problem is that I have to look into online-docs every now and then, and requires me to be connected to internet perpetually.

Is there a way to get offline docs for Vuetify? Like an html built with doxygen/javadocs, or a CHM? PDF? LaTEX? Anything really helps.

like image 829
shashanksm Avatar asked Jul 11 '18 19:07

shashanksm


People also ask

How do I use Vuetify offline?

The Vuetify website allows you to view it offline there by typing its website and pressing enter when not connected to the internet.

Can you use Vuetify without Vue?

No, you can't run Vuetify without Vue. The reason is pretty simple, most of Vuetify is built with vue and most of those components require their script to run, so everything that's not entirely css based will not work.

Does Vuetify support vue3?

The current version of Vuetify does not support Vue 3. Support for Vue 3 will come with the release of Vuetify v3 . When creating a new project, please ensure you selected Vue 2 from the Vue CLI prompts, or that you are installing to an existing Vue 2 project.

Can I add Vuetify to existing project?

To include Vuetify into an existing project, you must install its npm package. You can use either npm or yarn to accomplish this task. These are both package managers that allow you to control what resources are available in your application.


2 Answers

See the docs on how to run the docs.

git clone https://github.com/vuetifyjs/vuetify.git
cd vuetify
yarn
yarn build
yarn dev docs

Then head over to http://localhost:8095/en/getting-started/quick-start

like image 94
James Klein Avatar answered Sep 20 '22 09:09

James Klein


Update

git clone https://github.com/vuetifyjs/vuetifyjs.com.git has become a private project. The docs are now in the packages/docs/ directory. Instructions have been updated.


You can download the project from the vuetifyjs site repo, install and run locally.

git repo: https://github.com/vuetifyjs/vuetify

The instructions (for vue-cli-2 based project):

    cd /tmp/
    git clone https://github.com/vuetifyjs/vuetify.git
    cd vuetify/packages/docs
    yarn

    # option 1 - build and serve
    yarn build
    yarn start

    # option 2 - run dev instance
    yarn dev
like image 33
Daniel Avatar answered Sep 19 '22 09:09

Daniel