denormalized PairEntry, cleaned up console logs
This commit is contained in:
@@ -20,7 +20,6 @@ export class SingletonCoroutine {
|
||||
|
||||
async onTimeout(self) {
|
||||
self.timeout = null
|
||||
console.log('invoking', self.f, self.args)
|
||||
try {
|
||||
await self.f(...self.args)
|
||||
}
|
||||
@@ -33,3 +32,10 @@ export class SingletonCoroutine {
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
export const vAutoSelect = {
|
||||
beforeMount: (el) => {
|
||||
const input = el.querySelector('input')
|
||||
input.onfocus = () => setTimeout(() => input.select(), 0)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user