web-dev-qa-db-ja.com

Vuetifyオフラインドキュメント

Vuetifyを使用してUIコンポーネントを追加し、事前定義されたレイアウトを使用し始めました。問題は、時々online-docsを調べなければならず、インターネットに永続的に接続する必要があることです。

Vuetifyのオフラインドキュメントを取得する方法はありますか? doxygen/javadocs、またはCHMで構築されたhtmlのように? PDF?ラテックス?何かが本当に役立つ。

11
shashanksm

更新

git clone https://github.com/vuetifyjs/vuetifyjs.com.gitは非公開プロジェクトになりました。ドキュメントはpackages/docs/ディレクトリにあります。手順が更新されました。


Vuetifyjsサイトリポジトリからプロジェクトをダウンロードし、ローカルにインストールして実行できます。

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

手順(vue-cli-2ベースのプロジェクトの場合):

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

    # option 1 - build and serve
    yarn build
    yarn start

    # option 2 - run dev instance
    yarn dev
8
Daniel
git clone https://github.com/vuetifyjs/vuetify.git
yarn
yarn build
yarn start
http://localhost:8095
2
lwembawo alec

ドキュメントの実行方法については the docs を参照してください。

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

次に http:// localhost:8095/en/getting-started/quick-start に向かいます。

1
James Klein
  1. https://github.com/vuetifyjs/vuetify からZipをダウンロードします
  2. それをd:\ xampp\htdcos\vuetify-masterに置くような場所に抽出します
  3. コマンドプロンプト(cmd)を開き、次のパスを入力します。d:\ xampp\htdcos\vuetify-master
  4. ここでこのコマンド・ヤーンを実行しますD:\ xampp\htdocs\vuetify-master> yarn
  5. ここでyany buildを実行するよりもD:\ xampp\htdocs\vuetify-master> yarn build
  6. ここから糸スタートD:\ xampp\htdocs\vuetify-master> yarn start
  7. 0.0.0.0:8095でローカルドキュメントのVuetifyを開始します
  8. ブラウザを開いて http:// localhost:8095 と入力してお楽しみください

nodeモジュールは、yarnコマンドを実行する前に https://yarnpkg.com/lang/en/docs/install/#windows-stable からyarnをインストールすることも必要であり、yarnを介してcmdで糸のバージョンを確認してください- v

0
Furqan Aziz