반응형
script
설명
- 별도의 빌드 과정 없이 vue.js 스크립트를 로드하여 VueJS를 실행하는 방식
index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<!-- Vue.js -->
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<!-- lodash -->
<script src="https://unpkg.com/lodash@4.13.1/lodash.min.js"></script>
</head>
<body>
<div id="app">
{{ value }}
<button v-on:click="minus">minus</button>
<button v-on:click="plus">plus</button>
</div>
<script>
new Vue({
el: "#app",
data: {
value: 0
},
methods: {
minus() {
this.value--;
},
plus() {
this.value++;
},
}
});
</script>
</body>
</html>
npm
설명
- npm or yarn을 통해서 빌드 or webpack-server를 활용하여 VueJS를 실행하는 방식
vue-cli 설치
npm install -g @vue/cli
프로젝트 생성 (vue-cli 3.0 버전 이상)
- vue create 명령어로 프로젝트 생성
- 아래에서는 vue-example이라는 이름으로 프로젝트 생성
- 아래 명령을 실행한 경로의 하위 디렉토리로 vue-example이 생성됨
vue create vue-example
실행
- vue-example 디렉토리로 이동 후 아래 명령어 실행
yarn serve
웹페이지 확인
반응형
'Development > VueJS' 카테고리의 다른 글
[VueJS] 설치하기 (0) | 2019.04.25 |
---|---|
[VueJS] nexus npm repository로 VueJS 컴포넌트 배포 (0) | 2018.11.13 |