mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-11-09 17:58:21 +00:00
feat: auto focus CreatePlaylistModal input field
This commit is contained in:
parent
6311eb73de
commit
256cab83a0
@ -2,7 +2,7 @@
|
||||
<ModalComponent @close="$emit('close')">
|
||||
<div class="flex flex-col">
|
||||
<h2 v-t="'actions.create_playlist'" />
|
||||
<input v-model="playlistName" type="text" class="input mt-2" />
|
||||
<input ref="input" v-model="playlistName" type="text" class="input mt-2" />
|
||||
<div class="ml-auto mt-3 w-min flex">
|
||||
<button v-t="'actions.cancel'" class="btn" @click="$emit('close')" />
|
||||
<button v-t="'actions.okay'" class="btn ml-2" @click="onCreatePlaylist" />
|
||||
@ -25,6 +25,7 @@ export default {
|
||||
};
|
||||
},
|
||||
mounted() {
|
||||
this.$refs.input.focus();
|
||||
window.addEventListener("keydown", this.handleKeyDown);
|
||||
},
|
||||
unmounted() {
|
||||
|
Loading…
Reference in New Issue
Block a user