Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
384 Bytes
@if (query.isPending()) {
<div>Loading...</div>
}
@if (query.isError()) {
<div>An error has occurred: {{ query.error().message }}</div>
}
@if (query.data(); as data) {
<h1>{{ data.name }}</h1>
<p>{{ data.description }}</p>
<strong>👀 {{ data.subscribers_count }}</strong>
<strong>✨ {{ data.stargazers_count }}</strong>
<strong>🍴 {{ data.forks_count }}</strong>
}