Mobile UI Components library built on Vue 3 with 100+ components
74
Build a product gallery component that efficiently displays multiple product images using lazy loading to optimize page load performance.
Create a Vue 3 component that displays a list of product images with the following features:
@generates
export interface Product {
id: number;
name: string;
price: string;
imageUrl: string;
}
export interface ProductGalleryProps {
products: Product[];
}Provides mobile UI components including Image component with lazy loading support.
Install with Tessl CLI
npx tessl i tessl/npm-vantdocs
evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10