Vue.js 模块化

阮一峰老师的 CommonJS 必须要先看看,不重复造轮子文章。

基础知识

我们看完上面的文章,现在你应该理解了什么是 CommonJS 规范,以及下面的概念。

  • module.exports
  • exports
  • require
  • global

怎么理解这句代码?

import Hello from './Hello'

你可能感兴趣的:(Vue.js 模块化)