From 4365ca6177ff5d4f2835daf2fb8c7ed5015868f2 Mon Sep 17 00:00:00 2001 From: xingyu Date: Tue, 31 Oct 2023 14:10:05 +0800 Subject: [PATCH] fix: title name --- src/components/Tooltip/src/Tooltip.vue | 4 ++-- src/views/system/menu/MenuForm.vue | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/components/Tooltip/src/Tooltip.vue b/src/components/Tooltip/src/Tooltip.vue index 7490bd70..1a2e09cc 100644 --- a/src/components/Tooltip/src/Tooltip.vue +++ b/src/components/Tooltip/src/Tooltip.vue @@ -4,13 +4,13 @@ import { propTypes } from '@/utils/propTypes' defineOptions({ name: 'Tooltip' }) defineProps({ - titel: propTypes.string.def(''), + title: propTypes.string.def(''), message: propTypes.string.def(''), icon: propTypes.string.def('ep:question-filled') })