1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | <template> <form v-on:submit.prevent="submitForm"> <div> <label for="username">id:</label> <input id="username" type="text" v-model="username" /> </div> <div> <label for="password">PW:</label> <input id="password" type="psassword" v-model="password" /> </div> <button type="submit">login</button> </form> </template> <script> import axios from 'axios'; export default { data:function(){ return{ username : '', password : '', } }, methods:{ submitForm:function(){ console.log(this.username, this.password); var url = 'https://jsonplaceholder.typicode.com/users'; var data = { username: this.username, password: this.password } axios.post(url, data) .then(function(response){ console.log(response); }) .catch(function(error){ console.log(response); }); } } }; </script> <style> </style> | cs |
'Vue' 카테고리의 다른 글
form자동으로 넘어가는거 방지 event.preventDefault() (0) | 2020.02.22 |
---|---|
싱글 파일 컴포넌트에서 props $emit 구현하기 (0) | 2020.02.22 |
동일한 컴포넌트로 데이터 넘기기 props $emit 사용 (0) | 2020.02.18 |
전역 component 예제, 지역 component 예제 (0) | 2020.02.16 |
여러개의 Vue인스턴스 사용하기 (0) | 2020.02.16 |