IT/VUE
[VUE.JS] 페이징 처리 컴포넌트
FRONT (pagenation.vue) mdi-chevron-left {{pageNum}} mdi-chevron-right BACK(getTestPagination API) with MySQL async getTestPagination(req, res) { console.log("getTestPagination API") let { type, limit, offset } = req.query let com_id = req.session.comInfo.com_id // 보여지는 갯수 만큼 곱하기 if (offset > 0) { offset *= limit } try { let sql = ` SELECT a.idx, a.title, a.content, a.regdate, al.total_count tota..