Mobile UI Components library built on Vue 3 with 100+ components
74
Create a circular progress dashboard that displays multiple progress indicators with different configurations. The dashboard should allow users to visualize progress for various metrics using circular progress components.
The dashboard should display four circular progress indicators:
Each indicator should:
Include a control panel with:
The dashboard should:
@generates
/**
* CircularProgressDashboard Component
*
* A Vue component that displays multiple circular progress indicators
* with various configurations and allows interactive updates.
*/
export default {
name: 'CircularProgressDashboard',
data() {
return {
basicProgress: 75,
strokeProgress: 50,
colorProgress: 30,
largeProgress: 90,
inputValue: ''
}
},
methods: {
updateAll() {
// Update all progress values
}
}
}Provides mobile UI components including circular progress indicators with customization options for stroke width, colors, and size.
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