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

解决打包报错

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