36 lines
774 B
JavaScript
36 lines
774 B
JavaScript
import App from './App'
|
|
|
|
// #ifndef VUE3
|
|
import Vue from 'vue'
|
|
import './uni.promisify.adaptor'
|
|
Vue.config.productionTip = false
|
|
App.mpType = 'app'
|
|
const app = new Vue({
|
|
...App
|
|
})
|
|
app.$mount()
|
|
// #endif
|
|
|
|
// #ifdef VUE3
|
|
import { createSSRApp } from 'vue'
|
|
export function createApp() {
|
|
const app = createSSRApp(App)
|
|
|
|
// #ifdef MP-TOUTIAO
|
|
// 抖音小程序:忽略开发工具日志通道的 socket 错误
|
|
const originalError = console.error
|
|
console.error = function(...args) {
|
|
const message = args[0]
|
|
if (typeof message === 'string' && message.includes('APIScopeError: socket does not exist')) {
|
|
// 忽略这个已知的开发工具错误
|
|
return
|
|
}
|
|
originalError.apply(console, args)
|
|
}
|
|
// #endif
|
|
|
|
return {
|
|
app
|
|
}
|
|
}
|
|
// #endif
|