🎃

Litで作成したWeb Componentsのスタイルが一瞬崩れてしまうのを防ぎたい

2024/02/09に公開

Motivation

window.onload = () => {
  const app = document.getElementById('app')

  if (app) {
    init()
    app.classList.remove('loading')
  }
}

Discussion