| 1234567891011121314151617181920 |
- import App from './App'
- import Vue from 'vue'
- import store from './store'
- import { formatPriceWithSymbol, formatPrice, formatRate, formatScore } from '@/utils/format'
- Vue.config.productionTip = false
- Vue.prototype.$store = store
- Vue.prototype.formatPriceWithSymbol = formatPriceWithSymbol
- Vue.prototype.formatPrice = formatPrice
- Vue.prototype.formatRate = formatRate
- Vue.prototype.formatScore = formatScore
- App.mpType = 'app'
- const app = new Vue({
- store,
- ...App
- })
- app.$mount()
|