250x250
Notice
Recent Posts
Recent Comments
«   2025/01   »
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
Tags
more
Archives
Today
Total
관리 메뉴

진스

★vue 작업시 자주 쓰는 것들 모음 본문

Vue

★vue 작업시 자주 쓰는 것들 모음

입방정 2021. 4. 21. 14:31
728x90

https://ordinary-code.tistory.com/9

 

[Vue.js] 현업에서 잘 사용하는 Vue 무료 라이브러리 추천

현업 개발자가 소개하는 vue.js 유용한 라이브러리 필자는 현재 Vue.js를 주 언어로 사용하는 프런트 앤드 개발자이다. 오늘은 현업 시 유용하게 사용하고 있는 Vue.js 라이브러리 들을 소개해보려고

ordinary-code.tistory.com

 

1. textarea 본문 길이 제한 유효성 검사하기 bangj.tistory.com/35?category=926820

 

textarea 본문 길이 제한 유효성 검사하기

작성         글자가 길어요 작성  computed: {     isContentsValid() {       return this.contents.length < 10;     },

bangj.tistory.com

 

2. vue 이메일 체크 정규 표현식 코드 bangj.tistory.com/30?category=926820

 

vue 이메일 체크 정규 표현식 코드

 -utils/validation.js 파일내 function validateEmail(email) {     var re = /^(([^<>()[\]\\.,;:\s@"]+(\.[^<>()[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])..

bangj.tistory.com

 

3. vue 스피너 bangj.tistory.com/13?category=926820

 

vue 스피너

components > common > LoadingSpinner.vue 등록할 페이지에서  ........ import LoadingSpinner from "@/components/common/LoadingSpinner.vue"; export default {   components: { LoadingSpinner },..

bangj.tistory.com

 

4. vue filter 전역 설정 및 date포맷 bangj.tistory.com/12?category=926820

 

vue filter 전역 설정 및 date포맷

utils - filters.js export function formatDate(value) {   const date = new Date(value);   const year = date.getFullYear();   let month = date.getMonth() + 1;   month = month..

bangj.tistory.com

 

5. 인터셉터 bangj.tistory.com/3

 

인터셉터 axios interceptors

then이나catch로 처리되기 전에 요청이나 응답을 가로챌 수 있습니다. // 요청 인터셉터 추가 axios.interceptors.request.use(   function (config) {     // 요청을 보내기 전에 수행할 일   ..

bangj.tistory.com

 

 

6.cookies에 저장,로드 bangj.tistory.com/4?category=926820

 

Vue cookie에 저장하여 로그인하기

1. 쿠키에 값 저장하기 1. @/utils/cookies.js function saveAuthToCookie(value) {   document.cookie = `auth=${value}`; } function saveUserToCookie(value) {   document.cookie = `user=${value}`..

bangj.tistory.com

 

728x90
Comments