vue 运行脚手架报错
You are using the runtime-only build of Vue where the template compiler is not available. Either pre-compile the templates into render functions, or use the compiler-included build.
一直找不到哪里bug了 求大神求有可能哪里出错了
import Vue from 'vue'
import VueRouter from 'vue-router'
import routes from './router'
import './utils/rem'
import store from './store/'
import { routerMode } from './config/env'
import FastClick from 'fastclick'
if ('addEventListener' in document) {
document.addEventListener('DOMContentLoaded', function () {
FastClick.attach(document.body)
}, false)
}
Vue.use(VueRouter)
const router = new VueRouter({
routes,
mode: routerMode,
strict: process.env.NODE_ENV !== 'production',
scrollBehavior (to, from, savedPosition) {
if (savedPosition) {
return savedPosition
} else {
if (from.meta.keepAlive) {
from.meta.savedPosition = document.body.scrollTop
}
return {x: 0, y: to.meta.savedPosition || 0}
}
}
})
new Vue({
router,
store
}).$mount('#app')