1
0
forked from test/crm

chore: no need to import defineModel

This commit is contained in:
Shariq Ansari 2025-02-27 12:51:17 +05:30
parent ffce3d3167
commit a0bca04653
3 changed files with 3 additions and 3 deletions

View File

@ -94,7 +94,7 @@ import { usersStore } from '@/stores/users'
import { TextEditorBubbleMenu, TextEditor, FileUploader } from 'frappe-ui'
import { capture } from '@/telemetry'
import { EditorContent } from '@tiptap/vue-3'
import { ref, computed, defineModel } from 'vue'
import { ref, computed } from 'vue'
const props = defineProps({
placeholder: {

View File

@ -183,7 +183,7 @@ import { capture } from '@/telemetry'
import { validateEmail } from '@/utils'
import Paragraph from '@tiptap/extension-paragraph'
import { EditorContent } from '@tiptap/vue-3'
import { ref, computed, defineModel, nextTick } from 'vue'
import { ref, computed, nextTick } from 'vue'
const props = defineProps({
placeholder: {

View File

@ -46,7 +46,7 @@ import { Dropdown, Tooltip } from 'frappe-ui'
import { timeAgo, formatDate, formatTime } from '@/utils'
import { statusesStore } from '@/stores/statuses'
import { capture } from '@/telemetry'
import { computed, defineModel } from 'vue'
import { computed } from 'vue'
const data = defineModel()
const emit = defineEmits(['updateField'])