Vue.js 引入外部js方法

Posted smile_lg

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue.js 引入外部js方法相关的知识,希望对你有一定的参考价值。

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方法的主要内容,如果未能解决你的问题,请参考以下文章

vue.js基础

引入vue.js 文件

ArcGis API for js 在vue.js中的使用

使用带有渲染功能的 Vue.js 3 片段

从组件外部调用 Vue.js 组件方法

vue.js文件有vue导出口吗