vue.js引入外部js的方法:1、在外部檔案【config.js】中加入程式碼【function formatXml(text){return text}】;2、使用import語句引入【config.js 】裡面的常量和方法即可。
本教學操作環境:windows7系統、Vue2.9.6版,Dell G3電腦,此方法適用於所有品牌電腦。
【相關免費文章推薦:vue.js】
#vue.js引進外部js的方法:
1、外部檔案config.js
第一種寫法
//常量的定义 const config = { baseurl:‘http://172.16.114.5:8088/MGT2‘ } //函数的定义 function formatXml(text) { return text } //导出 {常量名、函数名} export {config,formatXml}
第二種寫法
//常量的定义 export const config = { baseurl:‘http://172.16.114.5:8088/MGT2‘ } //函数的定义 export function formatXml(text) { return text }
2、引入config .js裡面的常數和方法
import {config,formatXml} from ‘../config‘//记得带上{}花括号
相關免費學習推薦:javascript(影片)
以上是vue.js怎麼引進外部js的詳細內容。更多資訊請關注PHP中文網其他相關文章!