VUE專案中引入JS檔案的幾個方法
在開發Vue專案的時候,有時需要使用一些非ES6格式的沒有export的js庫,可以有以下方法實作:
1.在index.html頁面使用script標籤引入
當然也可以使用cdn的位址。這樣引入後的內容是全域的,可以在所有地方使用。
<!DOCTYPE html> <html> <head> <title>Map</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1.0"> <link rel="shortcut icon" type="image/x-icon" href="./static/img/favicon.ico"/> <script src='./static/libs/three/three.min.js'></script> <script src="./static/libs/three/GLTFLoader.js"></script> </head> <body> <p id="app"></p> <!-- built files will be auto injected --> </body></html>
2.在main.js中使用window.moduleName 使用
也可以放入Vue.prototype中,這樣元件內都可以使用。
var THREE = window.THREEvar GLTFLoader = THREE.GLTFLoader Vue.prototype.THREE = THREE
3.手動新增export
為js庫中需要使用的方法放入export default { /**要匯出的方法**/},然後透過import {*} from 使用
在JS函式庫中:
function realconsole(){ alert("hello world!"); } export { realconsole }
在需要使用JS函式庫的元件中:
import realconsole from './xxx'
4. 使用import方式,把需要的js庫中的方法掛載到全域
如下:
import '@static/libs/GLTFLoader' // 可以从全局获取导入的方法 let GLTFLoader = THREE.GLTFLoader
#相關推薦:
更多程式設計相關知識,請造訪:程式設計入門! !
以上是vue引入js檔案有哪幾種方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!