摘要:
call call是一个方法,是函数的方法,call可以调用函数 function fun () { console.log(this) } fun.call() call可以改变函数中this的指向 let cat = { name: '喵喵' } let dog = { name: '旺旺', 阅读全文
摘要:
router/index.js中 vue-cli2中还是使用的import Vue from 'vue',Vue.use也没有问题 import Vue from 'vue' import Router from 'vue-router' import HelloWorld from '@/comp 阅读全文