mand-mobile/examples/single-component-main.js

17 lines
447 B
JavaScript
Raw Normal View History

2018-03-26 16:04:04 +08:00
// The Vue build version to load with the `import` command
// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
import Vue from 'vue'
import VueRouter from 'vue-router'
import App from './single-component-app'
import '../components/_style/global.styl'
Vue.config.productionTip = false
const isProd = process.env.NODE_ENV === 'production'
/* eslint-disable no-new */
new Vue({
el: '#app',
render: h => h(App),
})