mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 11:37:58 +00:00
52 lines
1.1 KiB
Vue
52 lines
1.1 KiB
Vue
<script setup>
|
|
import Icon from 'dashboard/components-next/icon/Icon.vue';
|
|
import Button from 'dashboard/components-next/button/Button.vue';
|
|
import InlineInput from 'dashboard/components-next/inline-input/InlineInput.vue';
|
|
|
|
defineProps({
|
|
placeholder: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
label: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
});
|
|
|
|
const emit = defineEmits(['add']);
|
|
|
|
const modelValue = defineModel({
|
|
type: String,
|
|
default: '',
|
|
});
|
|
|
|
const onClickAdd = () => {
|
|
if (!modelValue.value?.trim()) return;
|
|
emit('add', modelValue.value.trim());
|
|
modelValue.value = '';
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
class="flex py-3 ltr:pl-3 h-16 rtl:pr-3 ltr:pr-4 rtl:pl-4 items-center gap-3 rounded-xl bg-n-solid-2 outline-1 outline outline-n-container"
|
|
>
|
|
<Icon icon="i-lucide-plus" class="text-n-slate-10 size-5 flex-shrink-0" />
|
|
|
|
<InlineInput
|
|
v-model="modelValue"
|
|
:placeholder="placeholder"
|
|
@keyup.enter="onClickAdd"
|
|
/>
|
|
<Button
|
|
:label="label"
|
|
ghost
|
|
xs
|
|
slate
|
|
class="!text-sm !text-n-slate-11 flex-shrink-0"
|
|
@click="onClickAdd"
|
|
/>
|
|
</div>
|
|
</template>
|