1 引入第三方插件
import echarts from 'echarts'
2 引入工具类
第一种是引入单个方法import {axiosfetch} from './util'; 下面是写法,需要export导出export function axiosfetch(options) { }
第二种 导入成组的方法import * as tools from './libs/tools'其中tools.js中有多个export方法,把tools里所有export的方法导入 vue中怎么用呢? Vue.prototype.$tools = tools 直接用 this.$tools.method调用就可以了
说到这 export 和 export default 又有什么区别呢?
下面看下区别
先是 export import {axiosfetch} from './util'; //需要加花括号 可以一次导入多个也可以一次导入一个,但都要加括号如果是两个方法import {axiosfetch,post} from './util'; 再是 export default import axiosfetch from './util'; //不需要加花括号 只能一个一个导入
3.导入 css文件
import 'iview/dist/styles/iview.css';
如果是在.vue文件中那么在外面套个style
<style> @import './test.css'; </style>
4.导入组件
import name1 from './name1'import name2 from './name2' components:{ name1, name2, },
5.导入js
比如你想给Arrary封一个属性,首先需要新建一个prototype.js的文件 文件里Array.prototype.max = function(){ return Math.max.apply({},this); }
然后引入
import './libs/prototype'在main.js中引用那么在所有的组件都可以用 [].max();
作者:butterflyer
链接:https://www.jianshu.com/p/784e51ec68ce
点击查看更多内容
为 TA 点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦