import Vue from 'vue' import App from './App' import { parseTime } from "@/utils/index"; Vue.config.productionTip = false Vue.prototype.parseTime = parseTime App.mpType = 'app' const app = new Vue({ ...App }) app.$mount()