提交 f033fcb3 authored 作者: 刘旭's avatar 刘旭

解决打包报错

上级 810a0982
<template> <template>
<view style="margin-bottom: 20rpx;"> <view style="margin-bottom: 20rpx;">
<view class="login-input"> <view class="login-input">
<view :class="'iconfont ' + inputData?.iconfont + ' login-icon'"></view> <view :class="'iconfont ' + inputData.iconfont + ' login-icon'"></view>
<input :type="inputData?.type" :placeholder="inputData?.placeholder" :password="inputData?.password" <input :type="inputData?.type" :placeholder="inputData.placeholder" :password="inputData?.password"
class="input-text" v-model="inputData?.inputValue" @blur="handleValue" /> class="input-text" v-model="inputData.inputValue" @blur="handleValue" />
<text class="getcode" v-if="inputData?.checkType === 'code'">获取验证码</text> <text class="getcode" v-if="inputData.checkType === 'code'">获取验证码</text>
</view> </view>
<text class="check" v-if="inputData?.check">{{ inputData?.checkContent }}</text> <text class="check" v-if="inputData.check">{{ inputData.checkContent }}</text>
</view> </view>
</template> </template>
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
let props = defineProps({ let props = defineProps({
inputData: { inputData: {
type: Object type: Object
} } as any
}); });
let emits = defineEmits(['hangleInput']); let emits = defineEmits(['hangleInput']);
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论