比如加载vue.js可以在html中通script标签加载然后使用,<script src="incude/vue/vue.min.js"></script>但有时候看到有的地方使用var Vue = require('vue');这个是什么个道理?require('vue');到底在什么环境下加载了个什么东西?谢
2 回答
TY_罗
TA贡献7条经验 获得超0个赞
vue框架源码自身支持AMD CMD commonjs规范,所以可以通过require()这种方式引用
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
添加回答
举报
0/150
提交
取消