本文介绍了Vuetify离线文档的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已经开始使用Vuetify添加ui组件并使用预定义的布局.问题是我必须不时查看在线文档,并要求我永久连接到互联网.

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.

有没有办法获取Vuetify的离线文档?像使用doxygen/javadocs生成的html还是CHM?PDF?乳胶?真的有什么帮助.

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.

推荐答案

更新

git clone https://github.com/vuetifyjs/vuetifyjs.com.git 已成为一个私有项目.这些文档现在位于 packages/docs/目录中.说明已更新.

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.

您可以从vuetifyjs网站仓库下载该项目,在本地安装并运行.

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

git仓库: https://github.com/vuetifyjs/vuetify

说明(针对基于vue-cli-2的项目):

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

这篇关于Vuetify离线文档的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-28 03:10