Components/LoadingState
Since 1.0.0BETA

LoadingState

Shortcut empty-state component for loading placeholders, based on TxEmptyState with `variant="loading"`.

This page was migrated by AI, please review carefully

Migration is complete, but please validate against source code and manual review.

LoadingState

TxLoadingState is a shortcut wrapper around TxEmptyState with variant="loading" pre-set. Use it for loading placeholders while data, plugins, or remote resources are being fetched.

Basic Usage

LoadingState

Demo will load when visible.
<template>
  <TxLoadingState description="Loading official plugins..." />
</template>

API

TxLoadingState inherits all Props (except variant), Slots, and Events from TxEmptyState. See EmptyState.

Interaction Contract

  • TxLoadingState always forwards variant="loading" to TxEmptyState.
  • The wrapper does not rewrite title, description, loading, or action config; explicit props are forwarded as-is.
  • icon, title, description, and actions slots are forwarded unchanged to TxEmptyState.