1.for语句constarr=['a','b','c','d','e','f'];for(leti=0,len=arr.length;i<len;i++){console.log(arr[i])}2.for...in语句constarr=['a','b','c','d','e','f'];//遍历数组返回索引for(letidxinarr...
不同页面有不同的title,那么如何动态改变title的值呢?涉及到两个页面的修改,src/main.js文件和src/router/index.js文件1.在main.js文件中注册一个全局的前置守卫:router.beforeEach(function(to,from,next){if(to.meta.title){document.titl...