add placeholder and autofocus to new feed url

This commit is contained in:
David Adi Nugroho
2021-12-22 07:54:49 +07:00
committed by nkanaev
parent df655aca5e
commit cb50aed89a
2 changed files with 7 additions and 1 deletions

View File

@@ -21,6 +21,12 @@ Vue.directive('scroll', {
},
})
Vue.directive('focus', {
inserted: function(el) {
el.focus()
}
})
Vue.component('drag', {
props: ['width'],
template: '<div class="drag"></div>',