// 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 App from'./App'import router from'./router'import Moment from'moment'// 定义全局时间戳过滤器
Vue.filter('formatDate',function(value){returnMoment(value).format('YYYY-MM-DD HH:mm:ss')})
Vue.config.productionTip =false/* eslint-disable no-new */newVue({
el:'#app',
router,
components:{ App },
template:'<App/>'})