app.js:351 Uncaught TypeError: Cannot read properties of null (reading 'innerHTML') at setup (App.vue:78:1) at callWithErrorHandling (runtime-core.esm-bundler.js:158:1) at setupStatefulComponent (runtime-core.esm-bundler.js:7236:1) at setupComponent (runtime-core.esm-bundler.js:7197:1) at mountComponent (runtime-core.esm-bundler.js:5599:1) at processComponent (runtime-core.esm-bundler.js:5565:1) at patch (runtime-core.esm-bundler.js:5040:1) at render (runtime-core.esm-bundler.js:6332:1) at mount (runtime-core.esm-bundler.js:3824:1) at app.mount (runtime-dom.esm-bundler.js:1431:1)
时间: 2024-04-02 15:32:23 浏览: 157
Vue报错:Uncaught TypeError: Cannot assign to read only property’exports‘ of object’#Object‘的解决方法
这个错误提示是 JavaScript 中的一个错误,它表示在 App.vue 文件的第 78 行尝试读取 null 对象的 innerHTML 属性,但是 null 对象并没有 innerHTML 属性,因此会抛出这个错误。你需要检查代码,找到为什么会出现 null 对象,并且确保在使用 innerHTML 属性之前先检查该对象是否为 null。
阅读全文