码迷,mamicode.com
首页 > Web开发 > 详细

Vue.js 引入外部js方法

时间:2020-04-23 19:27:22      阅读:328      评论:0      收藏:0      [点我收藏+]

标签:引入   function   mat   span   from   vue   orm   函数   ons   

1、外部文件config.js

第一种写法

 1 //常量的定义
 2 
 3 const config = {
 4   baseurl:‘http://172.16.114.5:8088/MGT2‘
 5 }
 6 
 7 //函数的定义
 8 
 9 function formatXml(text) {
10   return text
11 }
12 
13 //导出 {常量名、函数名}
14 export {config,formatXml}

第二种写法

 1 //常量的定义
 2 
 3 export const config = {
 4   baseurl:‘http://172.16.114.5:8088/MGT2‘
 5 }
 6 
 7 //函数的定义
 8 
 9 export function formatXml(text) {
10   return text
11 }

2、引入config.js里面的常量和方法

  import {config,formatXml} from ‘../config‘//记得带上{}花括号

转至:https://www.cnblogs.com/qiu-Ann/p/7463484.html

Vue.js 引入外部js方法

标签:引入   function   mat   span   from   vue   orm   函数   ons   

原文地址:https://www.cnblogs.com/lgjava/p/12762591.html

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