개요
- Vuex 설치
로컬 파일 불러오기
<script src="/path/to/vue.js"></script>
<script src="/path/to/vuex.js"></script>
npm으로 설치
npm install vuex --save
yarn으로 설치
yarn add vuex
설치된 패키지 사용하기
import Vue from 'vue'
import Vuex from 'vuex'
Vue.use(Vuex)
<script src="/path/to/vue.js"></script>
<script src="/path/to/vuex.js"></script>
npm install vuex --save
yarn add vuex
import Vue from 'vue'
import Vuex from 'vuex'
Vue.use(Vuex)