Vue - 프로젝트 공통함수 적용하기
1. 공통 js 생성 저의 경우 common.js를 생성하여 assets/js 안에 두었습니다. 함수 생성은 Vue.prototype.$함수명 = function(data){} 와 같은 방식으로 생성할 수 있습니다. import axios from 'axios' import config from 'config'; var requestOptions = { headers: { 'Content-Type': 'application/json', timeout: 60000 } }; export default{ install(Vue){ // ajax post Vue.prototype.$post = function (callUrl, postData, succ, fail){ var URL = `${config.conte..