通过Hello会获取到input输入框的焦点
- 发布:2020-07-03 00:19
- 更新:2020-07-03 00:19
- 阅读:1024
产品分类: uniapp/App
PC开发环境操作系统: Windows
PC开发环境操作系统版本号: 10
HBuilderX类型: 正式
HBuilderX版本号: 2.7.14
手机系统: iOS
手机系统版本号: iOS 13.4
手机厂商: 苹果
手机机型: iphone8
页面类型: vue
打包方式: 云端
项目创建方式: HBuilderX
操作步骤:
预期结果:
safari浏览器上的input获取到焦点
safari浏览器上的input获取到焦点
实际结果:
input无法获取到焦点
input无法获取到焦点
bug描述:
<template>
<view class="content">
<image class="logo" src="/static/logo.png"></image>
<view class="text-area" @tap="goUrl">
<text class="title">{{title}}</text>
</view>
<input type="text" :focus="isFocus" placeholder="请输入">
</view>
</template>
<script>
export default {
data() {
return {
title: 'Hello',
isFocus: false
}
},
onLoad() {
},
methods: {
goUrl() {
this.isFocus = true;
}
}
}
</script>
<style>
.content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.logo {
height: 200rpx;
width: 200rpx;
margin-top: 200rpx;
margin-left: auto;
margin-right: auto;
margin-bottom: 50rpx;
}
.text-area {
display: flex;
justify-content: center;
}
.title {
font-size: 36rpx;
color: #8f8f94;
}
</style>
0 个回复