logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

vue 时间格式化 dateFormat

在main.js 里面写Vue.filter('dateFormat',function(originVal){const dt =new Date(originVal)const y = dt.getFullYear()const m = (dt.getMonth() + 1 + '').padStart(2,0)const d = (dt.getDate() + '').padStart(2,

vue项目打开默认首页

在router里有个index.js文件export default new Router({routes: [{path: '/',redirect:'/home'},{path: '/home',name: 'home',component: home}],linkActiveClass:'router-active'//覆盖默认的路由高亮的类})这样项目一刷新就是首

到底了