使用uniappx编程时,在安卓端,我做了一个自定义组件,里面要引入一个自定义类Msg
const props = defineProps({
msg: {
type: Msg,
default: () : Msg => new Msg()
}
})
ios没有问题
android会报这个错误(告警),会造成程序假死一下,但是不会影响具体功能,我应该如何优化它呢?
使用uniappx编程时,在安卓端,我做了一个自定义组件,里面要引入一个自定义类Msg
const props = defineProps({
msg: {
type: Msg,
default: () : Msg => new Msg()
}
})
ios没有问题
android会报这个错误(告警),会造成程序假死一下,但是不会影响具体功能,我应该如何优化它呢?
0 个回复