16. Vue JS 23

20. Vue2 - 유효성 검사 모듈 Vee Validation ^3.4.11

OS Windows 10 PRO 64bit 버전 20H2 (OS 빌드 19042.867) Vue 2.5.13 Vee Validation ^3.4.11 공식 홈 https://vee-validate.logaretm.com/v4/v4/guide/global-validators#defining-global-validators 모듈 설치 npm install vee-validate@3.4.11 Vue 전역 컴포넌트로 등록 + extend 활용 vee-validation.js import Vue from 'vue'; import { extend, ValidationObserver, ValidationProvider } from 'vee-validate'; import { required, digits, numer..

16. Vue JS/Vue 2 2021.11.16

16. Vue 2 - Vuex Module 분리하기

OS Windows 10 PRO 64bit 버전 20H2 (OS 빌드 19042.867) Vue 2.5.13 코드 sout1217/TIL2021 Contribute to sout1217/TIL2021 development by creating an account on GitHub. github.com store/index.js import Vue from 'vue' import Vuex from 'vuex' Vue.use(Vuex) export default new Vuex.Store({ state: {}, mutations: {}, actions: {}, modules: {} }) 어플리케이션의 규모가 커질수록 data 를 하나의 store 안에 작성하는 것은 유지보수하기가 힘들어진다 때문에 vuex ..

16. Vue JS/Vue 2 2021.04.20

14. Vue 2 - Vue Storybook

OS Windows 10 PRO 64bit 버전 20H2 (OS 빌드 19042.867) Vue 2.5.13 곰식 홈페이지 Install Storybook Storybook is an open source tool for developing UI components in isolation for React, Vue, and Angular storybook.js.org 1. Vue CLI 설치하기 npm i -g @vue/cli vue create {디렉토리명} 2. vue storybook 설치하기 npx sb init 3. 생성되는 파일들 .storybook/main.js module.exports = { "stories": [ "../src/**/*.stories.mdx", "../src/**/*.s..

16. Vue JS/Vue 2 2021.03.31

11. Vue 2 - SockJS

OS Windows 10 Home 64bit 버전 1903 (OS 빌드 18362.836) Vue 2.5.13 # sock (서버)와 sock-client (클라이언트)로 나뉜다 메소드 설명 onopen 서버와 연결 됐을 때 호출 onmessage 클라이언트가 서버로부터 메시지를 받을 때 호출 onclose 웹 소켓 연결이 종료됐을 때 호출 onerror 에러가 발생하면 호출 send 서버로 데이터 전송 (blob, ArrayBuffer, ArrayBufferView) close 클라이언트와 서버 통신 종료 HTML Standard This section is non-normative. To enable web applications to maintain bidirectional communication..

16. Vue JS/Vue 2 2020.09.29