Код: Выделить всё
[i][/i]
{{ config('app.name') }} can make mistakes. Consider checking important information.
@script
function handleKeyPress(event) {
const textarea = event.target;
// Check if Enter key is pressed without Shift
if (event.key === 'Enter' && event.shiftKey === false) {
event.preventDefault();
@this.call('sendMessage');
}
// Check if Enter key is pressed with Shift
else if (event.key === 'Enter' && event.shiftKey === true) {
event.preventDefault();
const cursorPosition = textarea.selectionStart;
textarea.value =
textarea.value.slice(0, cursorPosition) +
'\n' +
textarea.value.slice(cursorPosition);
textarea.selectionStart = textarea.selectionEnd = cursorPosition + 1;
@this.set('inputMessage', textarea.value);
}
}
@endscript
а потом я нашел модификаторы клавиш Livewire, я тоже их попробовал
Код: Выделить всё
[i][/i]
как я могу отправить форму и добавьте новую строку, пожалуйста, помогите, я застрял с этим на день
Подробнее здесь: https://stackoverflow.com/questions/792 ... r-in-livew