這篇文章主要介紹了詳解VUE中常用的幾種import(模組、文件)引入方式,內容挺不錯的,現在分享給大家,也給大家做個參考。
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呼叫就可以了
#
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, },以上就是本文的全部內容,希望對大家的學習有所幫助,更多相關內容請關注PHP中文網! 相關推薦:
以上是關於VUE中常用的幾種import(模組、檔案)引入方式的介紹的詳細內容。更多資訊請關注PHP中文網其他相關文章!