码迷,mamicode.com
首页 > 其他好文 > 详细

VUE引入模块之import xxx from 'xxx' 和 import {xxx} from 'xxx'的区别

时间:2019-04-07 13:05:40      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:需要   多个   article   函数   etc   func   class   的区别   方式   

import FunName from ‘../xxx’
export defualt function FunName() {
  return fetch({
    url: /article/list,
    method: get
  });
}
import {xxx} from ‘../xxx’
export function FunName() {
  return fetch({
    url: /article/list,
    method: get
  });
}

ES中的模块导出导入

export 和 export default

两个导出,下面我们讲讲它们的区别

  1. export与export default均可用于导出常量、函数、文件、模块等
  2. 在一个文件或模块中,export、import可以有多个,export default仅有一个
  3. 通过export方式导出,在导入时要加{ },export default则不需要
  4. export能直接导出变量表达式,export default不行。

VUE引入模块之import xxx from 'xxx' 和 import {xxx} from 'xxx'的区别

标签:需要   多个   article   函数   etc   func   class   的区别   方式   

原文地址:https://www.cnblogs.com/xxflz/p/10664882.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!