You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/guide/installation.md
+11-11Lines changed: 11 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -1,13 +1,13 @@
1
1
# インストール
2
2
3
-
Vue.js is built by design to be incrementally adoptable. This means that it can be integrated into a project multiple ways depending on the requirements.
There are four primary ways of adding Vue.js to a project:
5
+
Vue.js をプロジェクトに追加するには主に4つの方法があります:
6
6
7
-
1.Import it as a [CDN package](#cdn)on the page
8
-
2.Download the JavaScript files and [host them yourself](#download-and-self-host)
9
-
3.Install it using [npm](#npm)
10
-
4.Use the official [CLI](#cli)to scaffold a project, which provides batteries-included build setups for a modern frontend workflow (e.g., hot-reload, lint-on-save, and much more)
If you want to avoid using build tools but can't use a CDN in production then you can download the relevant `.js`file and host it using your own web server. You can then include it using a `<script>`tag, just like with the CDN approach.
The files can be browsed and downloaded from a CDN such as [unpkg](https://unpkg.com/browse/vue@next/dist/)or[jsDelivr](https://cdn.jsdelivr.net/npm/vue@next/dist/). The various different files are [explained later](#explanation-of-different-builds)but you would typically want to download both a development build and a production build.
0 commit comments