feat: 订单列表接口对接
This commit is contained in:
28
main.js
28
main.js
@@ -1,24 +1,22 @@
|
||||
import App from './App'
|
||||
import App from "./App";
|
||||
|
||||
// #ifndef VUE3
|
||||
import Vue from 'vue'
|
||||
import './uni.promisify.adaptor'
|
||||
Vue.config.productionTip = false
|
||||
App.mpType = 'app'
|
||||
import Vue from "vue";
|
||||
import "./uni.promisify.adaptor";
|
||||
Vue.config.productionTip = false;
|
||||
App.mpType = "app";
|
||||
const app = new Vue({
|
||||
...App
|
||||
})
|
||||
app.$mount()
|
||||
...App,
|
||||
});
|
||||
app.$mount();
|
||||
// #endif
|
||||
|
||||
// #ifdef VUE3
|
||||
import { createSSRApp } from 'vue'
|
||||
import zPaging from 'z-paging/components/z-paging/z-paging.vue'
|
||||
import { createSSRApp } from "vue";
|
||||
export function createApp() {
|
||||
const app = createSSRApp(App)
|
||||
app.component('z-paging', zPaging)
|
||||
const app = createSSRApp(App);
|
||||
return {
|
||||
app
|
||||
}
|
||||
app,
|
||||
};
|
||||
}
|
||||
// #endif
|
||||
// #endif
|
||||
|
||||
Reference in New Issue
Block a user