赵永强
赵永强
  • 发布:2023-08-29 18:00
  • 更新:2023-08-30 10:56
  • 阅读:258

【报Bug】已解决 是模拟器的问题

分类:uni-app

产品分类: uniapp/App

PC开发环境操作系统: Windows

PC开发环境操作系统版本号: Windows 11 家庭中文版

HBuilderX类型: 正式

HBuilderX版本号: 3.8.7

手机系统: Android

手机系统版本号: Android 11

手机厂商: 模拟器

手机机型: 夜神模拟器

页面类型: nvue

vue版本: vue3

打包方式: 云端

项目创建方式: HBuilderX

示例代码:

新建一个项目,首页改为index.nvue,无法编辑

<input type="text" value="是是是" />

操作步骤:

新建一个项目,首页改为index.nvue,无法编辑

<input type="text" value="是是是" />

预期结果:

可编辑

实际结果:

不能编辑

bug描述:

新建一个项目,首页改为index.nvue,无法编辑

<input type="text" value="是是是" />
2023-08-29 18:00 负责人:无 分享
已邀请:
赵永强

赵永强 (作者) - 前端老菜鸟

这么明显的问题没人发现吗?

赵永强

赵永强 (作者) - 前端老菜鸟


<template>  
    <view class="content">  
        <image class="logo" src="/static/logo.png"></image>  
        <view class="text-area">  
            <text class="title">{{title}}</text>  
        </view>  
        <input type="text" value="sssss" />  
    </view>  
</template>  

<script>  
    export default {  
        data() {  
            return {  
                title: 'Hello'  
            }  
        },  
        onLoad() {  

        },  
        methods: {  

        }  
    }  
</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>  
赵永强

赵永强 (作者) - 前端老菜鸟

nvue光标就闪一下就没了,vue文件就没问题

赵永强

赵永强 (作者) - 前端老菜鸟

代码直接运行就行

w***@gmail.com

w***@gmail.com

试一下真机调试吧,真机上无法复现,考虑是不是模拟器不兼容

  • 赵永强 (作者)

    感谢回答,我的华为升级了鸿蒙4.0,就连不上了,刚拿别人的真机试了,的确没问题,看来是模拟器的问题

    2023-08-30 11:11

要回复问题请先登录注册