DONE: layout letter with letterhead and footer, notification for newly...
This commit is contained in:
@@ -2,11 +2,13 @@
|
||||
import { cn } from "@mykopkb/core/utils/cn";
|
||||
import { textarea } from "@mykopkb/core/styles/textarea.styles";
|
||||
|
||||
const { class: className, ...props } = defineProps<{
|
||||
const modelValue = defineModel<string>();
|
||||
|
||||
const { class: className } = defineProps<{
|
||||
class?: string;
|
||||
}>();
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<textarea :class="cn(textarea, className)" v-bind="{ ...props }" />
|
||||
<textarea v-model="modelValue" :class="cn(textarea, className)" v-bind="$attrs" />
|
||||
</template>
|
||||
|
||||
Reference in New Issue
Block a user