UNPKG

128 BJavaScriptView Raw
1export default function(ref) {
2 return {
3 methods: {
4 focus() {
5 this.$refs[ref].focus();
6 }
7 }
8 };
9};