1***@163.com
1***@163.com
  • 发布:2024-09-26 15:26
  • 更新:2024-12-10 18:31
  • 阅读:134

【报Bug】uniapp 里的 components 编译后的 .js 文件内容只有 Component({})

分类:uni-app

产品分类: uniapp/小程序/微信

PC开发环境操作系统: Mac

PC开发环境操作系统版本号: 14.6.1

HBuilderX类型: 正式

HBuilderX版本号: 4.24

第三方开发者工具版本号: 1.0.6

基础库版本号: 3.4.2

项目创建方式: HBuilderX

示例代码:

manifest.json 配置:

 "mp-weixin" : {  
        "appid" : "xxxxx",  
        "setting" : {  
            "coverView" : true,  
            "es6" : false,  
            "postcss" : false,  
            "minified" : false,  
            "enhance" : false,  
            "showShadowRootInWxmlPanel" : true,  
            "packNpmRelationList" : [],  
            "babelSetting" : {  
                "ignore" : [],  
                "disablePlugins" : [],  
                "outputPath" : ""  
            },  
            "ignoreUploadUnusedFiles" : true  
        },  
        "usingComponents" : true,  
        "permission" : {  
            "scope.userLocation" : {  
                "desc" : "你的位置信息将用于小程序位置接口的效果展示"  
            }  
        },  
        "plugins" : {  
            "wxacommentplugin" : {  
                "version" : "latest",  
                "provider" : "xxx"  
            }  
        }  
    },

操作步骤:

组件文件代码:

<template>  
    <view class="c-bottomShare">  
        bottom-sharesdf23  
    </view>  
</template>  

<script>  
export default {  
    mounted() {  
        console.log('mount');  
    },  
};  
</script>  
<style>  
.redc {color:red;}  
</style>

预期结果:

转换后的 .js 是有代码的

实际结果:

只有 Component({})

bug描述:

uniapp 里的 components 文件编译后的 .js 文件内容只有 Component({})

2024-09-26 15:26 负责人:无 分享
已邀请:
流光星际lgxj

流光星际lgxj

你好,我也遇到了同样的问题,请问你解决了吗

qkm

qkm

我也是遇到了这样的问题,已经解决了。

  • qkm

    重新建一个项目就没问题了

    2024-12-10 18:32

要回复问题请先登录注册