Méthode d'appel Vue après retard

methods: {
  activate() {
    setTimeout(() => this.isHidden = false, 500);
  }
}
Curious Chimpanzee