tessl install tessl/npm-vant@4.9.0Mobile UI Components library built on Vue 3 with 100+ components
Agent Success
Agent success rate when using this tile
74%
Improvement
Agent success rate improvement when using this tile compared to baseline
1.07x
Baseline
Agent success rate without this tile
69%
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