Mobile UI Components library built on Vue 3 with 100+ components
74
Build a 6-digit PIN entry interface for a mobile banking app. The interface should display masked PIN input and use a mobile-optimized numeric keypad for entering digits.
@generates
// Component that renders a PIN entry interface with numeric keypad
import { defineComponent } from 'vue';
export default defineComponent({
name: 'PinEntry',
emits: ['success', 'error'],
setup(props, { emit }) {
// Component implementation
}
});Provides mobile UI components including the numeric keyboard for PIN entry.
@satisfied-by
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