From 9d403873d0dd444206fb3c8415c2350dfab0e286 Mon Sep 17 00:00:00 2001 From: kentah <158997636+KentaHizume@users.noreply.github.com> Date: Fri, 28 Jun 2024 13:12:36 +0900 Subject: [PATCH] =?UTF-8?q?create-vue=E5=AE=9F=E8=A1=8C=E6=99=82=E3=81=AE?= =?UTF-8?q?=E5=87=BA=E5=8A=9B=E5=86=85=E5=AE=B9=E3=82=92=E6=9C=80=E6=96=B0?= =?UTF-8?q?=E5=8C=96=E3=81=99=E3=82=8B=20(#1388)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * create-vue実行時の出力内容を最新化 * 修正 * 大文字と小文字が一貫していない箇所を修正 * create-vue に合わせて npm run format を実行する記載に修正 --- .../how-to-develop/vue-js/create-vuejs-blank-project.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/documents/contents/guidebooks/how-to-develop/vue-js/create-vuejs-blank-project.md b/documents/contents/guidebooks/how-to-develop/vue-js/create-vuejs-blank-project.md index c4d101233..e909723b7 100644 --- a/documents/contents/guidebooks/how-to-develop/vue-js/create-vuejs-blank-project.md +++ b/documents/contents/guidebooks/how-to-develop/vue-js/create-vuejs-blank-project.md @@ -42,14 +42,16 @@ create-vue パッケージをインストールする必要があり、続行す ```terminal cd npm install +npm run format npm run dev ``` `npm run dev` が成功すると以下のように表示されるので、「 Local: 」に表示された URL をブラウザーで表示します。ブランクプロジェクトのランディングページが表示されます。 ```terminal -VITE v4.5.1 ready in 2970 ms +VITE v5.x.x ready in xxxx ms -> Local: http://localhost:5173/ -> Network: use --host to expose + - Local: http://localhost:5173/ + - Network: use --host to expose + - press h + enter to show help ```