在页面中使用了subNvue组件,使用自定义基座和标准基座调试样式正常,离线打包后,subNvue只剩下pages.json中配置的背景色
<template>
<div>
<text class="title" style="font-size: 16rpx; color: #007AFF;">ceshi</text>
<image src="../../../static/imgs/bz2.png"></image>
</div>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
}
}
</script>
<style lang="scss">
.title{
font-size: 16rpx;
color: #007AFF;
}
</style>
onReady() {
const testSub = uni.getSubNVueById('testSub')
testSub.show('fade-in', 200)
}
0 个回复