Vue] vue.js 데이터 시각화 라이브러리 for 리포트
1. Bryntum(브린텀) vue 2, 3 대표 사이트: https://bryntum.com/ 데모 : https://www.bryntum.com/products/grid/examples/columntypes/ 기능: 열별로 데이터 그룹화, 특정 값(날짜 등)으로 필터링, 그룹 내 정렬, 그룹 요약, 등 기본기능 가격 : https://bryntum.com/store/ High Performance Web Components For Project Management A suite of customizable Gantt, Scheduler, Grid, Calendar and Kanban web components that are seamlessly integrated with React, Vue, Ang..
2023. 1. 5.
javascript] 함수의 인자, Rest Parameter, Spread
1. 함수의 인자 parameter : 함수를 선언할 때 외부로 부터 값을 전달받기 위해 작성하는 값으로, 아래의 (a, b, c)를 의미한다 function sum(a, b, c){ return a + b + c }; argument : 함수를 호출 할 때 parameter로 전달하는 값으로, 아래 예시의 (1, 2, 3)을 의미한다 // sum 함수 호출 sum(1, 2, 3); 2. 함수의 기본값 함수를 선언할 때, parameter에 기본값을 미리 설정해놓을 수 있다. ex) (name='hana', age=20) parameter에 기본값을 설정해놓으면, 함수를 호출 시 argument의 값이 없거나 undefined인 경우 기본값을 매개인자로 대신 사용한다. function greeting(n..
2023. 1. 4.