Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Référence interne au DOM dans une vue choo #5

Open
ghost opened this issue Oct 20, 2017 · 1 comment
Open

Référence interne au DOM dans une vue choo #5

ghost opened this issue Oct 20, 2017 · 1 comment
Labels

Comments

@ghost
Copy link

ghost commented Oct 20, 2017

Dixit le readme

Demander à carl comment gérer les références internes au DOM au sein d'une vue choo

Tu veux dire quoi par références internes au DOM ? 😄

Choo te génère du pure DOM avec choo/html donc tu peux utiliser l'API DOM sur n'importe quel noeud généré par Choo.

import html from 'choo/html'

const el = html`
  <div>
    <h1>Super Title!</h1>
  </div>
`

const title = el.querySelector('h1')
console.log(title.innerHTML)
// Output: "Super Title!"
@ghost ghost added the question label Oct 20, 2017
@ghost
Copy link
Author

ghost commented Oct 23, 2017

C'est ça que tu cherche en fait : https://github.com/choojs/choo#caching-dom-elements

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

0 participants