$('.tab-button').eq(0).on('click', function(){
$('.tab-button').removeClass('orange');
$('.tab-button').eq(0).addClass('orange');
$('.tab-content').removeClass('show');
$('.tab-content').eq(0).addClass('show');
});
이 부분 순수자바스크립트코드로 하려고 하는데
document.querySelectorAll('tab-button')[0].addEventListener('click', function(){
document.querySelectorAll('tab-button')[0].classList.remove('orange');
document.querySelectorAll('tab-button')[0].classList.add('orange');
document.querySelectorAll('tab-button')[0].classList.remove('show');
document.querySelectorAll('tab-button')[0].classList.add('show');
});
실행이안돼서요..