讲师回答 / Brian
1. 在前端调试过程中,建议使用这个插件来解决跨域问题:Allow-Control-Allow-Origin: *1.0.3Allows to you request any site with ajax from any source. Adds to response 'Allow-Control-Allow-Origin: *' headerID:nlfbmbojpeacfghkpbjhddihlkkiljbi使用上面的ID去https://chrome-extension-downloader.c...
2019-01-18
讲师回答 / Brian
很有可能是由于你在创建router的时候,没有给这个router一个属性 name。正确的写法如下:
JS: const router = new VueRouter({ routes: [ { path: '/user/:userId', name: 'user', ...
2019-01-17
讲师回答 / Brian
@Miss喵 正解,因为watch方法是监听了msg这个变量的变化。所以,在console窗口中,使用app.msg = '一个你想要改变的值',回车,你就会看到console出来的结果啦。
2019-01-17
最赞回答 / 慕数据8302211
上面不是写了叫你运行 yarn global add @vue.cli-service-global 这个运行完之后的话,再运行 vue serve demo.vue
2019-01-17
已采纳回答 / Brian
@将自己发配于人海 之前在vuex那一章中,使用this.state.count++是因为本身在mutations中,本身没有传入payload参数,可以使用this代表着本Store对象,去改变state的值。另外一个问题,关于载荷传参的问...
2019-01-17
已采纳回答 / Brian
谢谢同学的关注,可以参考官方的资料,添加并配置vue.config.js文件中的两个属性:outputDir ——这个,告诉webpack你的文件打包到哪个目录下。publicpath ——这个,设置的你访问路径,比如,你放到了网站/var/www/html/app下面,可以设置 publicpath: '/app'
2019-01-16
讲师回答 / Brian
Command vue serve requires a global addon to be installed. Please run npm install -g @vue/cli-service-global and try again.你的报错的这两句话直译过来就是 “vue serve命令需要全局安装,请使用npm install -g @vue/cli-service-global”如果以上的命令执行后还是不行,请检查 :检查npm, node版本。给node命令执行的cmd终端“超级管理...
2019-01-16
老师,我用的2.5.21版本的Vue测试,我先改变了arr的值,然后再改变app.msg的值,神奇的事情并没有发生,arr的值没有重新渲染
2019-01-16