摘要:
跨域解决方法汇总: (1)JSONP (2)CORS(后端实现) (3)webSocket (4)node代理(先发给同域node服务器,同域服务器再发给真正服务器) (5)Nginx代理 conf/nginx.conf配置: # 新加的 location /spring { proxy_pass 阅读全文
摘要:
对需要使用compile或者在vue构造函数中使用template 选项时,需要引入构建版本(完整版)的vue.js。 需要在vue.config.js中进行配置,有如下2种方法: const path = require('path'); function resolve (dir) { retu 阅读全文
摘要:
工具: https://mdnice.com/ 阅读全文
摘要:
1、data mixins中的data会合并到data中,有冲突的话,data中数据覆盖mixins中的数据。 2、钩子函数 mixins中的钩子函数也会执行,先执行mixins中的钩子函数。 3、methods、components 和 directives methods、components 阅读全文