웹컴포넌트를 파라미터를 통해 콘텐츠 제어하는 예시를 기록해둔다.이렇게 하면 간단하게 파라미터 값으로 컴포넌트를 효과적으로 사용할 수 있다. class FooterComponent extends HTMLElement { static get observedAttributes() { return ['company-logo', 'copyright', 'reg-number1', 'reg-number2', 'ceo', 'width', 'visible']; } constructor() { super(); this.companyLogo = ''; this.copyright = ''; this.regNumber1 = ''; thi..