1 Star 0 Fork 0

richquan/靓购商城小程序

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
main.js 654 Bytes
一键复制 编辑 原始数据 按行查看 历史
chen 提交于 2022-05-23 22:39 . 接口不稳定
import App from './App'
// #ifndef VUE3
import Vue from 'vue'
import {
myRequest
} from "./util/api"
Vue.prototype.$myRequest = myRequest
Vue.filter("formatDate", (date) => {
const nDate = new Date(date)
const year = nDate.getFullYear()
const month = nDate.getMonth().toString().padStart(2, 0)
const day = nDate.getDay().toString().padStart(2, 0)
return year + "-" + month + "-" + day
})
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)
return {
app
}
}
// #endif
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/richquan/lianggou-mall-applet.git
[email protected]:richquan/lianggou-mall-applet.git
richquan
lianggou-mall-applet
靓购商城小程序
master

搜索帮助