From a1d7e81859f554f3a53680cc35f0f49bf1f77098 Mon Sep 17 00:00:00 2001
From: wwf <1971391498@qq.com>
Date: 星期四, 14 五月 2026 14:37:02 +0800
Subject: [PATCH] 导入项目
---
src/views/mp/components/wx-reply/components/TabText.vue | 22 ++++++++++++++++++++++
1 files changed, 22 insertions(+), 0 deletions(-)
diff --git a/src/views/mp/components/wx-reply/components/TabText.vue b/src/views/mp/components/wx-reply/components/TabText.vue
new file mode 100644
index 0000000..307e48f
--- /dev/null
+++ b/src/views/mp/components/wx-reply/components/TabText.vue
@@ -0,0 +1,22 @@
+<template>
+ <el-input type="textarea" :rows="5" placeholder="璇疯緭鍏ュ唴瀹�" v-model="content" />
+</template>
+
+<script lang="ts" setup>
+const props = defineProps<{
+ modelValue?: string | null
+}>()
+
+const emit = defineEmits<{
+ (e: 'update:modelValue', v: string | null)
+ (e: 'input', v: string | null)
+}>()
+
+const content = computed<string | null | undefined>({
+ get: () => props.modelValue,
+ set: (val: string | null) => {
+ emit('update:modelValue', val)
+ emit('input', val)
+ }
+})
+</script>
--
Gitblit v1.8.0